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 a23a03e commit 7a0b986Copy full SHA for 7a0b986
framework/CMakeLists.txt
@@ -72,6 +72,11 @@ include(GNUInstallDirs)
72
add_subdirectory(modules)
73
add_subdirectory(resources)
74
75
+# Needed for C11 Atomics on GCC
76
+if(UNIX AND NOT APPLE AND NOT ANDROID)
77
+ target_link_libraries(${PROJECT_NAME} PUBLIC atomic)
78
+endif()
79
+
80
81
############################################################################
82
# Performance library dependencies
0 commit comments