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.
10 lines
234 B
10 lines
234 B
4 years ago
|
enable_language(CXX)
|
||
|
|
||
|
find_package(Qt5Core REQUIRED)
|
||
|
|
||
|
set(CMAKE_AUTOMOC ON)
|
||
|
|
||
|
add_library(simple_lib SHARED simple_lib.cpp)
|
||
|
add_executable(app_with_qt app.cpp app_qt.cpp)
|
||
|
target_link_libraries(app_with_qt PRIVATE simple_lib Qt5::Core)
|