Skip to content

Commit

Permalink
Fixup vtkshared
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Feb 13, 2024
1 parent 331ab80 commit f6a8061
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ endif()
# F3D Application
cmake_dependent_option(F3D_BUILD_APPLICATION "Build the application" ON "NOT ANDROID AND NOT EMSCRIPTEN" OFF)

# libf3d target
add_subdirectory(library)
# VTKShared module
add_subdirectory(VTKShared)

# plugins
option(F3D_PLUGINS_STATIC_BUILD "Make all plugins static (embedded into libf3d) and automatically loaded by F3D" ON)
Expand All @@ -202,6 +202,9 @@ set(F3D_PLUGINS_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}" CACHE STRING "Plugins inst
mark_as_advanced(F3D_PLUGINS_INSTALL_DIR)
add_subdirectory(plugins)

# libf3d target
add_subdirectory(library)

if (F3D_BUILD_APPLICATION)
add_subdirectory(application)
endif()
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ list(APPEND libf3d_link_options_public ${f3d_coverage_link_options})
list(APPEND libf3d_compile_options_public ${f3d_sanitizer_compile_options})
list(APPEND libf3d_link_options_public ${f3d_sanitizer_link_options})

add_subdirectory(VTKShared)
add_subdirectory(VTKExtensions)

configure_file(
Expand Down

0 comments on commit f6a8061

Please sign in to comment.