tests: don't build test_flat by default

It's known to not compile for the moment, and there's no reason to
inflict that on the general public.

Signed-off-by: Steven Noonan <steven@valvesoftware.com>
This commit is contained in:
Steven Noonan
2018-06-04 12:06:53 -07:00
parent 6c6713ef42
commit 4fa1fb201d
2 changed files with 11 additions and 10 deletions
+5 -4
View File
@@ -1,8 +1,9 @@
add_executable(
test_connection
test_connection.cpp)
add_executable(
test_flat
test_flat.c)
target_link_libraries(test_connection GameNetworkingSockets)
target_link_libraries(test_flat GameNetworkingSockets)
#add_executable(
# test_flat
# test_flat.c)
#target_link_libraries(test_flat GameNetworkingSockets)
+6 -6
View File
@@ -40,9 +40,9 @@ executable('test_connection',
cpp_args: cxx_flags
)
incdirs = include_directories('../include')
executable('test_flat',
'test_flat.c',
dependence: dependencies,
include_directories: incdirs
)
#incdirs = include_directories('../include')
#executable('test_flat',
# 'test_flat.c',
# dependence: dependencies,
# include_directories: incdirs
#)