15 lines
544 B
CMake
15 lines
544 B
CMake
# Build SalomeMesh for all Platforms since heavily patched
|
|
if (BUILD_SMESH AND NOT FREECAD_USE_EXTERNAL_SMESH)
|
|
add_subdirectory(salomesmesh)
|
|
endif()
|
|
|
|
add_subdirectory(lazy_loader)
|
|
add_subdirectory(libE57Format)
|
|
|
|
if (BUILD_ASSEMBLY AND NOT FREECAD_USE_EXTERNAL_ONDSELSOLVER)
|
|
if( NOT EXISTS "${CMAKE_SOURCE_DIR}/src/3rdParty/OndselSolver/CMakeLists.txt" )
|
|
message( SEND_ERROR "The OndselSolver git submodule is not available. Please run
|
|
git submodule update --init" )
|
|
endif()
|
|
add_subdirectory(OndselSolver)
|
|
endif() |