26 lines
388 B
CMake
26 lines
388 B
CMake
|
|
cmake_minimum_required(VERSION 3.25 FATAL_ERROR)
|
|
|
|
|
|
project(PCL_CLI)
|
|
|
|
|
|
find_package(PCL 1.14 REQUIRED)
|
|
|
|
|
|
include_directories(${PCL_INCLUDE_DIRS})
|
|
|
|
|
|
link_directories(${PCL_LIBRARY_DIRS})
|
|
|
|
|
|
add_definitions(${PCL_DEFINITIONS})
|
|
|
|
add_library(PCL_CLI SHARED PCL_CLI.cpp)
|
|
|
|
|
|
set_target_properties(PCL_CLI PROPERTIES VS_GLOBAL_CLRSupport "true")
|
|
|
|
target_link_libraries (PCL_CLI ${PCL_LIBRARIES})
|
|
|