mirror of https://github.com/AxioDL/amuse.git
CMakeLists: Organize GUI source listings
Alphabetizes and sorts the entries for linear readability.
This commit is contained in:
parent
6850f0b2c9
commit
771abb3390
|
@ -27,45 +27,71 @@ QT5_ADD_RESOURCES(qrc_translation_res.cpp ${CMAKE_CURRENT_BINARY_DIR}/translatio
|
||||||
QT5_WRAP_UI(MAIN_WINDOW_UI MainWindow.ui)
|
QT5_WRAP_UI(MAIN_WINDOW_UI MainWindow.ui)
|
||||||
|
|
||||||
QT5_WRAP_CPP(AMUSE_MOC
|
QT5_WRAP_CPP(AMUSE_MOC
|
||||||
Common.hpp
|
ADSREditor.hpp
|
||||||
MainWindow.hpp
|
Common.hpp
|
||||||
KeyboardWidget.hpp
|
CurveEditor.hpp
|
||||||
StatusBarWidget.hpp
|
EditorWidget.hpp
|
||||||
ProjectModel.hpp
|
LayersEditor.hpp
|
||||||
EditorWidget.hpp
|
MainWindow.hpp
|
||||||
SoundMacroEditor.hpp
|
NewSoundMacroDialog.hpp
|
||||||
ADSREditor.hpp
|
KeyboardWidget.hpp
|
||||||
CurveEditor.hpp
|
KeymapEditor.hpp
|
||||||
KeymapEditor.hpp
|
ProjectModel.hpp
|
||||||
LayersEditor.hpp
|
SampleEditor.hpp
|
||||||
SampleEditor.hpp
|
SongGroupEditor.hpp
|
||||||
SoundGroupEditor.hpp
|
SoundGroupEditor.hpp
|
||||||
SongGroupEditor.hpp
|
SoundMacroEditor.hpp
|
||||||
NewSoundMacroDialog.hpp
|
StatusBarWidget.hpp
|
||||||
StudioSetupWidget.hpp)
|
StudioSetupWidget.hpp
|
||||||
|
)
|
||||||
|
|
||||||
add_executable(amuse-gui WIN32 MACOSX_BUNDLE
|
add_executable(amuse-gui WIN32 MACOSX_BUNDLE
|
||||||
Common.hpp Common.cpp
|
ADSREditor.cpp
|
||||||
MainWindow.ui ${MAIN_WINDOW_UI} MainWindow.hpp MainWindow.cpp
|
ADSREditor.hpp
|
||||||
KeyboardWidget.hpp KeyboardWidget.cpp
|
Common.cpp
|
||||||
StatusBarWidget.hpp StatusBarWidget.cpp
|
Common.hpp
|
||||||
ProjectModel.hpp ProjectModel.cpp
|
CurveEditor.cpp
|
||||||
EditorWidget.hpp EditorWidget.cpp
|
CurveEditor.hpp
|
||||||
SoundMacroEditor.hpp SoundMacroEditor.cpp
|
EditorWidget.cpp
|
||||||
ADSREditor.hpp ADSREditor.cpp
|
EditorWidget.hpp
|
||||||
CurveEditor.hpp CurveEditor.cpp
|
KeyboardWidget.cpp
|
||||||
KeymapEditor.hpp KeymapEditor.cpp
|
KeyboardWidget.hpp
|
||||||
LayersEditor.hpp LayersEditor.cpp
|
KeymapEditor.cpp
|
||||||
SampleEditor.hpp SampleEditor.cpp
|
KeymapEditor.hpp
|
||||||
SoundGroupEditor.hpp SoundGroupEditor.cpp
|
LayersEditor.cpp
|
||||||
SongGroupEditor.hpp SongGroupEditor.cpp
|
LayersEditor.hpp
|
||||||
NewSoundMacroDialog.hpp NewSoundMacroDialog.cpp
|
MainWindow.cpp
|
||||||
StudioSetupWidget.hpp StudioSetupWidget.cpp
|
MainWindow.hpp
|
||||||
MIDIReader.hpp MIDIReader.cpp
|
MainWindow.ui
|
||||||
resources/resources.qrc qrc_resources.cpp
|
MIDIReader.cpp
|
||||||
${QM_FILES} qrc_translation_res.cpp
|
MIDIReader.hpp
|
||||||
${AMUSE_MOC} ${PLAT_SRCS}
|
NewSoundMacroDialog.cpp
|
||||||
main.cpp)
|
NewSoundMacroDialog.hpp
|
||||||
|
ProjectModel.cpp
|
||||||
|
ProjectModel.hpp
|
||||||
|
SampleEditor.cpp
|
||||||
|
SampleEditor.hpp
|
||||||
|
SongGroupEditor.cpp
|
||||||
|
SongGroupEditor.hpp
|
||||||
|
SoundGroupEditor.cpp
|
||||||
|
SoundGroupEditor.hpp
|
||||||
|
SoundMacroEditor.cpp
|
||||||
|
SoundMacroEditor.hpp
|
||||||
|
StatusBarWidget.cpp
|
||||||
|
StatusBarWidget.hpp
|
||||||
|
StudioSetupWidget.cpp
|
||||||
|
StudioSetupWidget.hpp
|
||||||
|
|
||||||
|
main.cpp
|
||||||
|
qrc_resources.cpp
|
||||||
|
qrc_translation_res.cpp
|
||||||
|
resources/resources.qrc
|
||||||
|
|
||||||
|
${AMUSE_MOC}
|
||||||
|
${MAIN_WINDOW_UI}
|
||||||
|
${PLAT_SRCS}
|
||||||
|
${QM_FILES}
|
||||||
|
)
|
||||||
if(COMMAND add_sanitizers)
|
if(COMMAND add_sanitizers)
|
||||||
add_sanitizers(amuse-gui)
|
add_sanitizers(amuse-gui)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue