We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bae3aa5 commit b077b31Copy full SHA for b077b31
CMakeLists.txt
@@ -15,6 +15,7 @@ endif()
15
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
16
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
17
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
18
+set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
19
20
add_subdirectory(game)
21
add_subdirectory(utils)
@@ -24,7 +25,6 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
24
25
option(WINFORMS_ENABLED "Enable native Windows interface" ON)
26
set(COCOA_ENABLED OFF)
27
set(NCURSES_ENABLED OFF)
- set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
28
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
29
option(COCOA_ENABLED "Enable native MacOS interface" ON)
30
option(NCURSES_ENABLED "Enable NCurses interface" ON)
0 commit comments