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.
20 lines
433 B
20 lines
433 B
include_directories(
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../src
|
|
)
|
|
include_directories(SYSTEM
|
|
${Qt5Core_INCLUDE_DIRS}
|
|
${Qt5Widgets_INCLUDE_DIRS}
|
|
)
|
|
|
|
set(testname AutomocMacosFWLib)
|
|
add_executable(${testname} testMacosFWLib.cpp)
|
|
set_target_properties(${testname} PROPERTIES AUTOMOC TRUE)
|
|
target_link_libraries(${testname}
|
|
Qt5::Core
|
|
Qt5::Widgets
|
|
Qt5::Test
|
|
macos_fw_lib
|
|
)
|