Skip to content

Commit

Permalink
MINGW - Skip loguruthreadnames internal test because it always fails.
Browse files Browse the repository at this point in the history
  • Loading branch information
cboulay committed May 25, 2024
1 parent 33aa95a commit 6652d2c
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions testing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,21 @@ add_executable(lsl_test_exported
target_link_libraries(lsl_test_exported PRIVATE lsl common catch_main)


add_executable(lsl_test_internal
int/inireader.cpp
int/loguruthreadnames.cpp
int/network.cpp
int/stringfuncs.cpp
int/streaminfo.cpp
int/samples.cpp
int/postproc.cpp
int/serialization_v100.cpp
int/tcpserver.cpp
set(LSL_TEST_INTERNAL_SRCS
int/inireader.cpp
int/network.cpp
int/stringfuncs.cpp
int/streaminfo.cpp
int/samples.cpp
int/postproc.cpp
int/serialization_v100.cpp
int/tcpserver.cpp
)
if(NOT MINGW)
LIST(APPEND LSL_INTERNAL_SRCS int/loguruthreadnames.cpp)
endif()
message(STATUS ${LSL_TEST_INTERNAL_SRCS})
add_executable(lsl_test_internal ${LSL_TEST_INTERNAL_SRCS})
target_link_libraries(lsl_test_internal PRIVATE lslobj lslboost common catch_main)


Expand Down

0 comments on commit 6652d2c

Please sign in to comment.