Codechange: split building into a library and executable

This commit is contained in:
Rubidium
2023-04-10 18:00:53 +02:00
committed by rubidium42
parent 9e89eb5726
commit 9b56505fec
8 changed files with 32 additions and 15 deletions

View File

@@ -1,6 +1,5 @@
add_files(
crashlog_unix.cpp
unix_main.cpp
CONDITION UNIX AND NOT APPLE AND NOT OPTION_OS2
)
@@ -13,3 +12,7 @@ add_files(
font_unix.cpp
CONDITION Fontconfig_FOUND
)
if(UNIX AND NOT APPLE AND NOT OPTION_OS2)
target_sources(openttd PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/unix_main.cpp)
endif()