metaforce/Editor/CMakeLists.txt

55 lines
2.3 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-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
RuntimeCommonGraphics
2016-03-07 03:12:32 +00:00
RuntimeCommonAudio
2015-11-21 01:23:55 +00:00
RuntimeCommon
DNAMP3 DNAMP2 DNAMP1
2016-03-04 23:04:53 +00:00
DNACommon specter specter-fonts freetype ${DATA_SPEC_LIBS}
hecl-database hecl-backend hecl-frontend hecl-blender hecl-runtime hecl-common athena-core nod
2016-03-07 03:12:32 +00:00
logvisor athena-libyaml boo ${PNG_LIB} libjpeg-turbo squish xxhash zeus
2015-11-21 01:23:55 +00:00
${ZLIB_LIBRARIES} ${LZO_LIB}
${BOO_SYS_LIBS})
set_target_properties(urde PROPERTIES
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/platforms/mac/Info.plist")