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 d2592f0 commit 845378dCopy full SHA for 845378d
CMakeLists.txt
@@ -303,6 +303,14 @@ if(UNIX)
303
add_executable(core_dump src/core_dump.cpp)
304
endif()
305
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
+
314
#add_executable(packaged_task src/packaged_task.cpp)
315
316
add_executable(std_visit src/std_visit.cpp)
0 commit comments