File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -58,17 +58,21 @@ add_executable(lsl_test_exported
58
58
target_link_libraries (lsl_test_exported PRIVATE lsl common catch_main )
59
59
60
60
61
- add_executable (lsl_test_internal
62
- int/inireader.cpp
63
- int/loguruthreadnames.cpp
64
- int/network.cpp
65
- int/stringfuncs.cpp
66
- int/streaminfo.cpp
67
- int/samples.cpp
68
- int/postproc.cpp
69
- int/serialization_v100.cpp
70
- int/tcpserver.cpp
61
+ set (LSL_TEST_INTERNAL_SRCS
62
+ int/inireader.cpp
63
+ int/network.cpp
64
+ int/stringfuncs.cpp
65
+ int/streaminfo.cpp
66
+ int/samples.cpp
67
+ int/postproc.cpp
68
+ int/serialization_v100.cpp
69
+ int/tcpserver.cpp
71
70
)
71
+ if (NOT MINGW )
72
+ LIST (APPEND LSL_INTERNAL_SRCS int/loguruthreadnames.cpp )
73
+ endif ()
74
+ message (STATUS ${LSL_TEST_INTERNAL_SRCS} )
75
+ add_executable (lsl_test_internal ${LSL_TEST_INTERNAL_SRCS} )
72
76
target_link_libraries (lsl_test_internal PRIVATE lslobj lslboost common catch_main )
73
77
74
78
You can’t perform that action at this time.
0 commit comments