metaforce/Editor/CMakeLists.txt

67 lines
2.6 KiB
CMake
Raw Normal View History

2016-02-12 06:06:17 +00:00
include_directories(${CMAKE_CURRENT_SOURCE_DIR} ./../Runtime)
add_subdirectory(locale)
2016-01-18 00:40:11 +00:00
add_subdirectory(icons)
2016-01-05 00:01:02 +00:00
if("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
2016-01-05 04:20:45 +00:00
option(RUDE_BINARY_CONFIGS
"Use binary Athena formats for serializing save data structures, rather than YAML"
YES)
else()
option(RUDE_BINARY_CONFIGS
"Use binary Athena formats for serializing save data structures, rather than YAML"
NO)
endif()
if(RUDE_BINARY_CONFIGS)
2016-01-05 09:53:16 +00:00
add_definitions("-DURDE_BINARY_CONFIGS=1")
2016-01-05 00:01:02 +00:00
endif()
2016-01-07 00:40:27 +00:00
atdna(atdna_Space.cpp Space.hpp)
atdna(atdna_ResourceBrowser.cpp ResourceBrowser.hpp)
2016-01-18 00:40:11 +00:00
atdna(atdna_ModelViewer.cpp ModelViewer.hpp)
2016-02-02 04:29:58 +00:00
atdna(atdna_ParticleEditor.cpp ParticleEditor.hpp)
2016-02-02 08:31:05 +00:00
atdna(atdna_InformationCenter.cpp InformationCenter.hpp)
2016-01-07 00:40:27 +00:00
if(WIN32)
set(PLAT_SRCS platforms/win/urde.rc)
elseif(APPLE)
set(PLAT_SRCS platforms/mac/mainicon.icns)
set_source_files_properties(platforms/mac/mainicon.icns PROPERTIES
MACOSX_PACKAGE_LOCATION Resources)
2016-01-27 23:27:56 +00:00
elseif(UNIX)
add_subdirectory(platforms/freedesktop)
declare_wmicon_target()
set(PLAT_SRCS mainicon_netwm.c)
endif()
add_executable(urde WIN32 MACOSX_BUNDLE
main.cpp ${PLAT_SRCS}
Space.hpp Space.cpp atdna_Space.cpp
2015-12-24 03:32:21 +00:00
SplashScreen.hpp SplashScreen.cpp
2016-01-07 00:40:27 +00:00
ResourceBrowser.hpp ResourceBrowser.cpp atdna_ResourceBrowser.cpp
2016-01-18 00:40:11 +00:00
ModelViewer.hpp ModelViewer.cpp atdna_ModelViewer.cpp
2016-02-02 04:29:58 +00:00
ParticleEditor.hpp ParticleEditor.cpp atdna_ParticleEditor.cpp
2016-02-02 08:31:05 +00:00
InformationCenter.hpp InformationCenter.hpp atdna_InformationCenter.cpp
2015-12-13 21:01:32 +00:00
ProjectManager.hpp ProjectManager.cpp
2016-02-16 05:50:41 +00:00
ProjectResourceFactory.hpp ProjectResourceFactory.cpp
2016-01-17 22:41:49 +00:00
ViewManager.hpp ViewManager.cpp
2016-02-02 04:29:58 +00:00
Resource.hpp Resource.cpp
2016-01-17 22:41:49 +00:00
Camera.hpp Camera.cpp)
2015-11-21 01:23:55 +00:00
2016-01-05 09:53:16 +00:00
target_link_libraries(urde
UrdeLocales
2016-01-18 00:40:11 +00:00
UrdeIcons
2015-11-21 01:23:55 +00:00
RuntimeCommonCharacter
RuntimeCommonInput
2016-02-12 06:06:17 +00:00
RuntimeCommonParticle
2015-11-21 01:23:55 +00:00
RuntimeCommon
DNAMP3 DNAMP2 DNAMP1
2016-01-04 05:31:02 +00:00
DNACommon Specter SpecterFonts freetype ${DATA_SPEC_LIBS}
HECLDatabase HECLBackend HECLFrontend HECLBlender HECLRuntime HECLCommon AthenaCore NOD
2015-11-21 01:23:55 +00:00
LogVisor AthenaLibYaml Boo ${PNG_LIB} squish xxhash Math
${ZLIB_LIBRARIES} ${LZO_LIB}
${BOO_SYS_LIBS})
set_target_properties(urde PROPERTIES
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/platforms/mac/Info.plist")