Files
qG3Point/CMakeLists.txt
T

24 lines
603 B
CMake
Raw Normal View History

2023-11-22 12:56:31 +01:00
# CloudCompare example for standard plugins
# REPLACE ALL 'G3PointPlugin' OCCURENCES BY YOUR PLUGIN NAME
# AND ADAPT THE CODE BELOW TO YOUR OWN NEEDS!
# Add an option to CMake to control whether we build this plugin or not
option( PLUGIN_G3POINT "Install example plugin" OFF )
if ( PLUGIN_G3POINT )
project( G3PointPlugin )
AddPlugin( NAME ${PROJECT_NAME} )
add_subdirectory( include )
add_subdirectory( src )
2023-11-26 22:43:42 +01:00
target_include_directories( ${PROJECT_NAME} PRIVATE
C:/opt/eigen-3.4.0
)
2023-11-22 12:56:31 +01:00
# set dependencies to necessary libraries
# target_link_libraries( ${PROJECT_NAME} LIB1 )
endif()