gui: Explicitly set the lists of source files
This commit is contained in:
parent
1d5fcfa3af
commit
01b97d0c2a
|
@ -6,8 +6,107 @@ set (CMAKE_AUTORCC ON)
|
||||||
set (CMAKE_AUTOUIC ON)
|
set (CMAKE_AUTOUIC ON)
|
||||||
set (CMAKE_INCLUDE_CURRENT_DIR ON)
|
set (CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
||||||
file (GLOB GUI_SOURCE_FILES src/*.cpp src/*.h)
|
set(GUI_SOURCE_FILES
|
||||||
file (GLOB GUI_UI_FILES src/*.ui)
|
src/AboutDialog.cpp
|
||||||
|
src/Action.cpp
|
||||||
|
src/ActionDialog.cpp
|
||||||
|
src/AddClientDialog.cpp
|
||||||
|
src/AppConfig.cpp
|
||||||
|
src/BarrierLocale.cpp
|
||||||
|
src/BaseConfig.cpp
|
||||||
|
src/CommandProcess.cpp
|
||||||
|
src/DataDownloader.cpp
|
||||||
|
src/DisplayIsValid.cpp
|
||||||
|
src/Fingerprint.cpp
|
||||||
|
src/Hotkey.cpp
|
||||||
|
src/HotkeyDialog.cpp
|
||||||
|
src/IpcClient.cpp
|
||||||
|
src/Ipc.cpp
|
||||||
|
src/IpcReader.cpp
|
||||||
|
src/KeySequence.cpp
|
||||||
|
src/KeySequenceWidget.cpp
|
||||||
|
src/LogWindow.cpp
|
||||||
|
src/main.cpp
|
||||||
|
src/MainWindow.cpp
|
||||||
|
src/NewScreenWidget.cpp
|
||||||
|
src/QBarrierApplication.cpp
|
||||||
|
src/QUtility.cpp
|
||||||
|
src/Screen.cpp
|
||||||
|
src/ScreenSettingsDialog.cpp
|
||||||
|
src/ScreenSetupModel.cpp
|
||||||
|
src/ScreenSetupView.cpp
|
||||||
|
src/ServerConfig.cpp
|
||||||
|
src/ServerConfigDialog.cpp
|
||||||
|
src/SettingsDialog.cpp
|
||||||
|
src/SetupWizard.cpp
|
||||||
|
src/SslCertificate.cpp
|
||||||
|
src/TrashScreenWidget.cpp
|
||||||
|
src/VersionChecker.cpp
|
||||||
|
src/ZeroconfBrowser.cpp
|
||||||
|
src/ZeroconfRegister.cpp
|
||||||
|
src/ZeroconfServer.cpp
|
||||||
|
src/ZeroconfService.cpp
|
||||||
|
src/ZeroconfThread.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
set(GUI_HEADER_FILES
|
||||||
|
src/AboutDialog.h
|
||||||
|
src/ActionDialog.h
|
||||||
|
src/Action.h
|
||||||
|
src/AddClientDialog.h
|
||||||
|
src/AppConfig.h
|
||||||
|
src/BarrierLocale.h
|
||||||
|
src/BaseConfig.h
|
||||||
|
src/CommandProcess.h
|
||||||
|
src/DataDownloader.h
|
||||||
|
src/DisplayIsValid.h
|
||||||
|
src/ElevateMode.h
|
||||||
|
src/Fingerprint.h
|
||||||
|
src/HotkeyDialog.h
|
||||||
|
src/Hotkey.h
|
||||||
|
src/IpcClient.h
|
||||||
|
src/Ipc.h
|
||||||
|
src/IpcReader.h
|
||||||
|
src/KeySequence.h
|
||||||
|
src/KeySequenceWidget.h
|
||||||
|
src/LogWindow.h
|
||||||
|
src/MainWindow.h
|
||||||
|
src/NewScreenWidget.h
|
||||||
|
src/ProcessorArch.h
|
||||||
|
src/QBarrierApplication.h
|
||||||
|
src/QUtility.h
|
||||||
|
src/Screen.h
|
||||||
|
src/ScreenSettingsDialog.h
|
||||||
|
src/ScreenSetupModel.h
|
||||||
|
src/ScreenSetupView.h
|
||||||
|
src/ServerConfigDialog.h
|
||||||
|
src/ServerConfig.h
|
||||||
|
src/SettingsDialog.h
|
||||||
|
src/SetupWizard.h
|
||||||
|
src/ShutdownCh.h
|
||||||
|
src/SslCertificate.h
|
||||||
|
src/TrashScreenWidget.h
|
||||||
|
src/VersionChecker.h
|
||||||
|
src/ZeroconfBrowser.h
|
||||||
|
src/ZeroconfRecord.h
|
||||||
|
src/ZeroconfRegister.h
|
||||||
|
src/ZeroconfServer.h
|
||||||
|
src/ZeroconfService.h
|
||||||
|
src/ZeroconfThread.h
|
||||||
|
)
|
||||||
|
|
||||||
|
set(GUI_UI_FILES
|
||||||
|
src/AboutDialogBase.ui
|
||||||
|
src/ActionDialogBase.ui
|
||||||
|
src/AddClientDialogBase.ui
|
||||||
|
src/HotkeyDialogBase.ui
|
||||||
|
src/LogWindowBase.ui
|
||||||
|
src/MainWindowBase.ui
|
||||||
|
src/ScreenSettingsDialogBase.ui
|
||||||
|
src/ServerConfigDialogBase.ui
|
||||||
|
src/SettingsDialogBase.ui
|
||||||
|
src/SetupWizardBase.ui
|
||||||
|
)
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
set (GUI_RC_FILES res/win/Barrier.rc)
|
set (GUI_RC_FILES res/win/Barrier.rc)
|
||||||
|
@ -15,6 +114,7 @@ endif()
|
||||||
|
|
||||||
add_executable (barrier WIN32
|
add_executable (barrier WIN32
|
||||||
${GUI_SOURCE_FILES}
|
${GUI_SOURCE_FILES}
|
||||||
|
${GUI_HEADER_FILES}
|
||||||
${GUI_UI_FILES}
|
${GUI_UI_FILES}
|
||||||
${GUI_RC_FILES}
|
${GUI_RC_FILES}
|
||||||
res/Barrier.qrc
|
res/Barrier.qrc
|
||||||
|
|
Loading…
Reference in New Issue