pfe/CMakeLists.txt

11 lines
324 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_sources(pfe PRIVATE src/main.cc)
target_link_libraries(pfe PRIVATE VTK::CommonCore VTK::ViewsCore VTK::RenderingCore VTK::IOCore VTK::FiltersCore VTK::CommonColor VTK::GUISupportQt VTK::RenderingQt VTK::ViewsQt)