pfe/CMakeLists.txt

11 lines
324 B
CMake

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)