pfe/CMakeLists.txt

27 lines
496 B
CMake
Raw Normal View History

2022-01-31 16:55:32 +01:00
cmake_minimum_required(VERSION 3.15)
project(pfe)
add_subdirectory(external/vtk)
add_executable(pfe)
target_compile_features(pfe PRIVATE cxx_std_17)
2022-01-31 16:55:32 +01:00
target_sources(pfe PRIVATE src/main.cc)
2022-02-09 16:24:57 +01:00
target_link_libraries(pfe PRIVATE
VTK::CommonCore
VTK::ViewsCore
VTK::RenderingCore
VTK::IOCore
VTK::FiltersCore
VTK::CommonColor
VTK::GUISupportQt
VTK::RenderingQt
VTK::ViewsQt
VTK::RenderingVolume
VTK::CommonDataModel
VTK::IOLegacy
2022-02-10 19:38:48 +01:00
VTK::IOXML
VTK::RenderingVolumeOpenGL2)