Skip to content

Commit 845378d

Browse files
committed
correct WIN32 for cmake
1 parent d2592f0 commit 845378d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,14 @@ if(UNIX)
303303
add_executable(core_dump src/core_dump.cpp)
304304
endif()
305305

306+
# Only build these on non-Windows platforms
307+
if(NOT WIN32)
308+
add_executable(align src/align.cpp)
309+
add_executable(signals src/signals.cpp)
310+
add_executable(system_call src/system_call.cpp)
311+
add_executable(fork src/fork.cpp)
312+
endif()
313+
306314
#add_executable(packaged_task src/packaged_task.cpp)
307315

308316
add_executable(std_visit src/std_visit.cpp)

0 commit comments

Comments
 (0)