123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- cmake_minimum_required(VERSION 3.12)
- set(execName1 show1)
- file(GLOB LOCAL_SRC
- ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp
- ${CMAKE_CURRENT_SOURCE_DIR}/*.ui
- ${CMAKE_CURRENT_SOURCE_DIR}/*.qrc
- ${CMAKE_CURRENT_SOURCE_DIR}/StyleManager/*.cpp
- ${CMAKE_SOURCE_DIR}/External/common/Thread/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/WebAPI/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/Resource/*.qrc
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/WidgetItems/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/UserData/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/AddItem/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/ItemData/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/Template/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/warnning/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/Shadow/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/ImageBlur/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/combobox/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/SelectTime/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/date/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/date/*.qrc
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/DropShadow/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/PaintHelper/*.cpp
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/warning/*.cpp
-
- ${LHHTTPAPI_SOURCE_DIRS}/*.cpp
- )
- add_executable(${execName1} ${LOCAL_SRC})
- target_include_directories(${execName1} PRIVATE
- ${CMAKE_CURRENT_SOURCE_DIR}
- ${CMAKE_CURRENT_SOURCE_DIR}/LHLog
- ${CMAKE_CURRENT_SOURCE_DIR}/StyleManager
- ${CMAKE_SOURCE_DIR}/External/common/Thread
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/WebAPI
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/WidgetItems
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/UserData
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/AddItem
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/ItemData
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/Template
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/warnning
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/nlohmann
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/Shadow
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/ImageBlur
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/combobox
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/SelectTime
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/date
- ${CMAKE_SOURCE_DIR}/TransmitterSwitch/common/warning
-
- ${LHHTTPAPI_INCLUDE_DIRS}
- ${spdlog_INCLUDE_DIR}
- )
- target_link_libraries(${execName1} PRIVATE
- Qt5::Widgets
- Qt5::Core
- Qt5::Network
- )
- target_link_libraries(${execName1} PRIVATE
- ${spdlog_LIBRARY}
-
- )
|