amuse/Editor/CMakeLists.txt

88 lines
3.0 KiB
CMake
Raw Normal View History

2018-03-14 17:25:29 -07:00
cmake_minimum_required(VERSION 3.10)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
2018-08-19 13:05:39 -07:00
find_package(Qt5Widgets REQUIRED)
find_package(Qt5Network REQUIRED)
find_package(Qt5Xml REQUIRED)
find_package(Qt5Svg REQUIRED)
find_package(Qt5Qml REQUIRED)
find_package(Qt5LinguistTools REQUIRED)
2018-03-14 17:25:29 -07:00
2018-03-23 14:54:52 -07:00
if(WIN32)
list(APPEND PLAT_SRCS platforms/win/amuse-gui.rc platforms/win/amuse-gui.manifest)
elseif(APPLE)
list(APPEND PLAT_SRCS platforms/mac/mainicon.icns MacOSExtras.mm)
2018-03-23 14:54:52 -07:00
set_source_files_properties(platforms/mac/mainicon.icns PROPERTIES
MACOSX_PACKAGE_LOCATION Resources)
endif()
2018-03-14 17:25:29 -07:00
add_subdirectory(platforms/freedesktop)
declare_qticon_target()
list(APPEND PLAT_SRCS mainicon_qt.cpp)
2018-07-24 23:01:01 -07:00
configure_file(resources/translation_res.qrc translation_res.qrc @ONLY)
set(TRANSLATIONS
resources/lang_de.ts)
QT5_CREATE_TRANSLATION(QM_FILES ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../lib ${TRANSLATIONS})
QT5_ADD_RESOURCES(qrc_resources.cpp resources/resources.qrc)
2018-07-24 23:01:01 -07:00
QT5_ADD_RESOURCES(qrc_translation_res.cpp ${CMAKE_CURRENT_BINARY_DIR}/translation_res.qrc OPTIONS -no-compress)
2018-08-03 19:31:47 -07:00
QT5_WRAP_UI(MAIN_WINDOW_UI MainWindow.ui)
QT5_WRAP_CPP(AMUSE_MOC
Common.hpp
MainWindow.hpp
KeyboardWidget.hpp
StatusBarWidget.hpp
ProjectModel.hpp
EditorWidget.hpp
SoundMacroEditor.hpp
ADSREditor.hpp
CurveEditor.hpp
KeymapEditor.hpp
LayersEditor.hpp
SampleEditor.hpp
SoundGroupEditor.hpp
2018-08-09 23:19:23 -07:00
SongGroupEditor.hpp
2018-08-15 23:26:44 -07:00
NewSoundMacroDialog.hpp
StudioSetupWidget.hpp)
2018-08-03 19:31:47 -07:00
2018-03-14 17:25:29 -07:00
add_executable(amuse-gui WIN32 MACOSX_BUNDLE
Common.hpp Common.cpp
2018-08-03 19:31:47 -07:00
MainWindow.ui ${MAIN_WINDOW_UI} MainWindow.hpp MainWindow.cpp
KeyboardWidget.hpp KeyboardWidget.cpp
2018-08-15 23:26:44 -07:00
StatusBarWidget.hpp StatusBarWidget.cpp
ProjectModel.hpp ProjectModel.cpp
EditorWidget.hpp EditorWidget.cpp
SoundMacroEditor.hpp SoundMacroEditor.cpp
2018-07-18 00:39:26 -07:00
ADSREditor.hpp ADSREditor.cpp
CurveEditor.hpp CurveEditor.cpp
KeymapEditor.hpp KeymapEditor.cpp
LayersEditor.hpp LayersEditor.cpp
SampleEditor.hpp SampleEditor.cpp
2018-07-18 00:39:26 -07:00
SoundGroupEditor.hpp SoundGroupEditor.cpp
SongGroupEditor.hpp SongGroupEditor.cpp
2018-08-09 23:19:23 -07:00
NewSoundMacroDialog.hpp NewSoundMacroDialog.cpp
2018-08-15 23:26:44 -07:00
StudioSetupWidget.hpp StudioSetupWidget.cpp
2018-07-27 21:34:29 -07:00
MIDIReader.hpp MIDIReader.cpp
resources/resources.qrc qrc_resources.cpp
2018-07-24 23:01:01 -07:00
${QM_FILES} qrc_translation_res.cpp
2018-08-03 19:31:47 -07:00
${AMUSE_MOC} ${PLAT_SRCS}
2018-03-14 17:25:29 -07:00
main.cpp)
if(COMMAND add_sanitizers)
add_sanitizers(amuse-gui)
endif()
2018-03-14 17:25:29 -07:00
set_target_properties(amuse-gui PROPERTIES
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/platforms/mac/Info.plist")
target_link_libraries(amuse-gui ${PLAT_LIBS}
${Qt5Widgets_LIBRARIES}
${Qt5Network_LIBRARIES}
${Qt5Xml_LIBRARIES}
${Qt5Svg_LIBRARIES}
2018-08-19 13:05:39 -07:00
${Qt5Qml_LIBRARIES}
2018-07-16 21:48:38 -07:00
amuse boo ${BOO_SYS_LIBS} logvisor athena-core athena-libyaml xxhash ${ZLIB_LIBRARIES} ${LZO_LIB})