This repository contains the following CMake find modules:
- findACIS.cmake: Finds libraries and headers of Spatial Corporation's 3D ACIS Modeler.
- Create directory
<project_root>/cmake-modules
andfindACIS.cmake
in this directory - Alternatively, you can clone this repository directly in your
<project_root>
- Use the following (or modify it for your needs) in your
CMakeLists.txt
file
cmake_minimum_required ( VERSION 2.8.11 )
project ( MyACISApp )
# Extend CMake module path for loading custom modules
set ( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_LIST_DIR}/cmake-modules" )
# findACIS module accepts a parameter for processing additional search paths
set ( ACIS_ROOT "/opt" CACHE PATH "3D ACIS Modeler custom install path." )
# Find 3D ACIS Modeler headers and libraries
find_package ( ACIS REQUIRED )
# Check if CMake has found libraries and headers for 3D ACIS Modeler
if ( ACIS_FOUND )
include_directories ( ${ACIS_INCLUDE_DIRS} )
# Unset ACIS_ROOT
unset ( ACIS_ROOT )
unset ( ACIS_ROOT CACHE )
else ()
message(FATAL_ERROR "ACIS not found")
endif ()
3D ACIS Modeler requires Threads library. To link ACIS and Threads library (and the other required components):
target_link_libraries ( MyACISApp ${ACIS_LINK_LIBRARIES} )
It is also possible to generate INSTALL rules as descibed below:
# Install ACIS Release .DLL/.SO to the application install directory
install (
FILES ${ACIS_REDIST_RELEASE}
DESTINATION ${APP_INSTALL_DIR}
CONFIGURATIONS Release RelWithDebInfo MinSizeRel
)
# Install ACIS Debug .DLL/.SO to to the application install directory
install (
FILES ${ACIS_REDIST_DEBUG}
DESTINATION ${APP_INSTALL_DIR}
CONFIGURATIONS Debug
)
It is also possible to find 3D ACIS-HOOPS Bridge by adding a COMPONENTS
argument to find_package
. It will be automatically added to ACIS_LINK_LIBRARIES
variable:
find_package ( ACIS COMPONENTS HBRIDGE REQUIRED )
The other components that can be discovered by this CMake find module are
- Precise Hidden Line Removal V5 -
PHLV5
- Defeaturing -
DEFEATURE
- Advanced Deformable Modeling -
ADMHUSK
- Onur Rauf Bingol ([email protected])
CMake find modules are released under The Unlicense. ACIS and SAT are registered trademarks of Spatial Corporation, a subsidiary of Dassault Systemes.