ComplexPlotting/ComplexPlotting/CMakeLists.txt

27 lines
597 B
Text
Raw Normal View History

2020-08-16 20:08:28 +02:00
# CMakeList.txt : CMake project for ComplexPlotting, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
2020-08-18 14:11:30 +02:00
if(WIN32)
file(GLOB SDL2_LIBRARIES
${SDL2_INCLUDES}/*.lib
)
else()
endif()
2020-08-16 20:08:28 +02:00
# Add source to this project's executable.
2020-08-18 14:11:30 +02:00
add_executable (ComplexPlotting
"main.cpp"
2020-08-28 14:31:36 +02:00
"PlotWindow.hpp" "PlotWindow.cpp" "PlotWindowManager.hpp" "PlotWindowException.hpp")
2020-08-18 14:11:30 +02:00
target_include_directories(ComplexPlotting PRIVATE
${SDL2_INCLUDES}
${CMAKE_SOURCE_DIR}/SDLFramework/src/sdlf
)
2020-08-16 20:08:28 +02:00
2020-08-18 14:11:30 +02:00
target_link_libraries(ComplexPlotting PRIVATE
${SDL2_LIBRARIES}
sdlf
)