You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
7 years ago
|
cmake_minimum_required(VERSION 3.9)
|
||
8 years ago
|
project(mocPlugin CXX)
|
||
|
|
||
|
set(CMAKE_AUTOMOC_DEPEND_FILTERS
|
||
|
"A_CUSTOM_MACRO"
|
||
|
"[\n][ \t]*A_CUSTOM_MACRO[ \t\r\n]*\\([^,]+,[ \t\r\n]*\"([^\"]+)\""
|
||
|
)
|
||
|
|
||
|
if (NOT QT_TEST_VERSION STREQUAL 5)
|
||
|
message(SEND_ERROR "Invalid Qt version specified.")
|
||
|
endif()
|
||
|
find_package(Qt5Widgets REQUIRED)
|
||
|
|
||
|
if(Qt5_POSITION_INDEPENDENT_CODE AND CMAKE_CXX_COMPILE_OPTIONS_PIC)
|
||
|
add_definitions(${CMAKE_CXX_COMPILE_OPTIONS_PIC})
|
||
|
endif()
|
||
|
|
||
|
configure_file(jsonIn/StyleC.json jsonFiles/StyleC.json)
|
||
|
configure_file(jsonIn/StyleC.json jsonFiles/StyleC_Custom.json)
|
||
7 years ago
|
configure_file(jsonIn/StyleD.json jsonFiles/sub/StyleD.json)
|
||
8 years ago
|
configure_file(jsonIn/StyleD.json jsonFiles/sub/StyleD_Custom.json)
|
||
7 years ago
|
configure_file(jsonIn/StyleE.json jsonFiles/StyleE.json)
|
||
|
configure_file(jsonIn/StyleE.json jsonFiles/StyleE_Custom.json)
|
||
8 years ago
|
|
||
|
# Enable automoc
|
||
|
set(CMAKE_AUTOMOC TRUE)
|
||
|
|
||
|
include_directories("${CMAKE_CURRENT_BINARY_DIR}/jsonFiles")
|
||
|
link_libraries(Qt5::Widgets)
|
||
|
|
||
|
add_library(PlugA STATIC StyleA.cpp)
|
||
|
add_library(PlugB STATIC StyleB.cpp)
|
||
|
add_library(PlugC STATIC StyleC.cpp)
|
||
|
add_library(PlugD STATIC StyleD.cpp)
|
||
|
add_library(PlugE STATIC StyleE.cpp)
|