We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de9fc87 commit cc3fc4cCopy full SHA for cc3fc4c
CMakeLists.txt
@@ -35,9 +35,6 @@ target_include_directories(${PROJECT_NAME} PUBLIC
35
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
36
target_sources(${PROJECT_NAME} PRIVATE
37
src/threads/posix_thread.cpp)
38
-elseif(WIN32)
39
- target_sources(${PROJECT_NAME} PRIVATE
40
- src/threads/windows_thread.cpp)
41
endif()
42
if(WIN32)
43
target_compile_definitions(${PROJECT_NAME}
include/rcpputils/threads.hpp
@@ -17,8 +17,6 @@
17
18
#if defined(__linux__)
19
#include "rcpputils/threads/posix/thread.hpp"
20
-#elif defined(_WIN32)
21
-#include "rcpputils/threads/windows/thread.hpp"
22
#else
23
#include "rcpputils/threads/std/thread.hpp"
24
#endif
include/rcpputils/threads/windows/thread.hpp
src/threads/windows_thread.cpp
0 commit comments