mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-15 12:15:43 +08:00
Merge pull request #102 from Shatur95/update_cmake_examples
Update CMake examples
This commit is contained in:
commit
3a7d48f173
@ -1,15 +1,13 @@
|
||||
cmake_minimum_required(VERSION 3.1.0)
|
||||
|
||||
project(basic)
|
||||
project(basic LANGUAGES CXX)
|
||||
|
||||
# SingleApplication base class
|
||||
set(QAPPLICATION_CLASS QCoreApplication CACHE STRING "Inheritance class for SingleApplication")
|
||||
set(QAPPLICATION_CLASS QCoreApplication)
|
||||
|
||||
add_executable(basic
|
||||
main.cpp
|
||||
)
|
||||
add_executable(basic main.cpp)
|
||||
|
||||
find_package(Qt5 COMPONENTS Core REQUIRED)
|
||||
add_subdirectory(../.. SingleApplication)
|
||||
target_link_libraries(${PROJECT_NAME} Qt5::Core SingleApplication)
|
||||
target_link_libraries(${PROJECT_NAME} SingleApplication)
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
cmake_minimum_required(VERSION 3.1.0)
|
||||
|
||||
project(calculator)
|
||||
project(calculator LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
# SingleApplication base class
|
||||
set(QAPPLICATION_CLASS QApplication CACHE STRING "Inheritance class for SingleApplication")
|
||||
set(QAPPLICATION_CLASS QApplication)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
button.h
|
||||
@ -13,8 +13,8 @@ add_executable(${PROJECT_NAME}
|
||||
button.cpp
|
||||
calculator.cpp
|
||||
main.cpp
|
||||
)
|
||||
)
|
||||
|
||||
find_package(Qt5 COMPONENTS Widgets REQUIRED)
|
||||
add_subdirectory(../.. SingleApplication)
|
||||
target_link_libraries(${PROJECT_NAME} Qt5::Widgets SingleApplication)
|
||||
target_link_libraries(${PROJECT_NAME} SingleApplication)
|
||||
|
@ -1,19 +1,19 @@
|
||||
cmake_minimum_required(VERSION 3.1.0)
|
||||
|
||||
project(sending_arguments)
|
||||
project(sending_arguments LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
# SingleApplication base class
|
||||
set(QAPPLICATION_CLASS QCoreApplication CACHE STRING "Inheritance class for SingleApplication")
|
||||
set(QAPPLICATION_CLASS QCoreApplication)
|
||||
|
||||
add_executable(${PROJECT_NAME}
|
||||
main.cpp
|
||||
messagereceiver.cpp
|
||||
messagereceiver.h
|
||||
main.cpp
|
||||
)
|
||||
)
|
||||
|
||||
find_package(Qt5 COMPONENTS Core REQUIRED)
|
||||
add_subdirectory(../.. SingleApplication)
|
||||
target_link_libraries(${PROJECT_NAME} Qt5::Core SingleApplication)
|
||||
target_link_libraries(${PROJECT_NAME} SingleApplication)
|
||||
|
Loading…
Reference in New Issue
Block a user