56 lines
1.9 KiB
CMake
56 lines
1.9 KiB
CMake
#----------------------------------------------------------------
|
|
# Packages
|
|
#----------------------------------------------------------------
|
|
# Find includes in corresponding build include_directories
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
# Instruct CMake to run moc automatically when needed
|
|
set(CMAKE_AUTOMOC ON)
|
|
# Create code from a list of Qt designer ui files
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
#----------------------------------------------------------------
|
|
# Sources
|
|
#----------------------------------------------------------------
|
|
set(refreshtest_sources
|
|
circularbuffer.cpp
|
|
circularbuffer.h
|
|
main.cpp
|
|
mainwindow.cpp
|
|
mainwindow.h
|
|
panel.cpp
|
|
panel.h
|
|
plot.cpp
|
|
plot.h
|
|
settings.h
|
|
)
|
|
|
|
#----------------------------------------------------------------
|
|
# Target
|
|
#----------------------------------------------------------------
|
|
add_executable(qwt_example_refreshtest ${refreshtest_sources})
|
|
|
|
target_link_libraries(qwt_example_refreshtest
|
|
PRIVATE
|
|
qwt
|
|
)
|
|
|
|
#----------------------------------------------------------------
|
|
# Deploy
|
|
#----------------------------------------------------------------
|
|
add_custom_command(
|
|
TARGET qwt_example_refreshtest POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
$<TARGET_FILE:Qt5::Core> $<TARGET_FILE_DIR:qwt_example_refreshtest>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
$<TARGET_FILE:Qt5::Gui> $<TARGET_FILE_DIR:qwt_example_refreshtest>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
$<TARGET_FILE:Qt5::OpenGL> $<TARGET_FILE_DIR:qwt_example_refreshtest>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
$<TARGET_FILE:Qt5::PrintSupport> $<TARGET_FILE_DIR:qwt_example_refreshtest>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
$<TARGET_FILE:Qt5::Svg> $<TARGET_FILE_DIR:qwt_example_refreshtest>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
$<TARGET_FILE:Qt5::Widgets> $<TARGET_FILE_DIR:qwt_example_refreshtest>
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
$<TARGET_FILE:qwt> $<TARGET_FILE_DIR:qwt_example_refreshtest>
|
|
)
|