We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad3907 commit 9a8662cCopy full SHA for 9a8662c
1 file changed
CMakeLists.txt
@@ -10,18 +10,8 @@ set(CMAKE_CXX_VISIBILITY_PRESET hidden)
10
11
project(YetMoreEditorTools VERSION 1.0.0)
12
13
-
14
-set(MACOS_SOURCES "")
15
-if (APPLE)
16
- enable_language(OBJCXX)
17
- if (NOT IOS)
18
- set(MACOS_SOURCES src/macos.mm)
19
- endif()
20
-endif()
21
22
23
file(GLOB_RECURSE SOURCES CONFIGURE_DEPENDS src/*.cpp)
24
-add_library(${PROJECT_NAME} SHARED ${SOURCES} ${MACOS_SOURCES})
+add_library(${PROJECT_NAME} SHARED ${SOURCES})
25
26
if (NOT DEFINED ENV{GEODE_SDK})
27
message(FATAL_ERROR "Unable to find Geode SDK! Please define GEODE_SDK environment variable to point to Geode")
0 commit comments