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 d398518 commit ad37ad9Copy full SHA for ad37ad9
src/CMakeLists.txt
@@ -15,8 +15,7 @@ set(CMAKE_CXX_STANDARD 17)
15
set(CMAKE_CXX_STANDARD_REQUIRED ON)
16
17
# Common source files
18
-file(GLOB COMMON_SOURCES "*.cpp")
19
-file(GLOB FOUNDATION_SOURCES "foundation/*.cpp")
+file(GLOB COMMON_SOURCES "*.cpp" "foundation/*.cpp")
20
list(FILTER COMMON_SOURCES EXCLUDE REGEX "platform/*")
21
22
# C API source files
@@ -42,7 +41,6 @@ endif()
42
41
# Add library target
43
add_library(nativeapi STATIC
44
${COMMON_SOURCES}
45
- ${FOUNDATION_SOURCES}
46
${PLATFORM_SOURCES}
47
${CAPI_SOURCES}
48
)
0 commit comments