mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
7311948d53
restructuring/massive renaming to make this possible
29 lines
733 B
CMake
29 lines
733 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
set(EXAMPLE_NAME distributionplot)
|
|
set(EXENAME jkqtptest_${EXAMPLE_NAME})
|
|
|
|
message( STATUS ".. Building Example ${EXAMPLE_NAME}" )
|
|
|
|
|
|
# Set up source files
|
|
set(SOURCES test_distributionplot.cpp)
|
|
set(HEADERS )
|
|
set(RESOURCES )
|
|
set(UIS )
|
|
|
|
add_executable(${EXENAME} WIN32 ${SOURCES} ${HEADERS} ${RESOURCES} ${UIS})
|
|
target_include_directories(${EXENAME} PRIVATE ../../lib)
|
|
if(BUILD_STATIC_LIBS)
|
|
target_link_libraries(${EXENAME} JKQTPlotterLib)
|
|
elseif(BUILD_SHARED_LIBS)
|
|
target_link_libraries(${EXENAME} JKQTPlotterSharedLib)
|
|
endif()
|
|
|
|
|
|
|
|
# Installation
|
|
if(LIB_INSTALL)
|
|
install(TARGETS ${EXENAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
endif(LIB_INSTALL)
|