Skip to content

Instantly share code, notes, and snippets.

@gunnarbeutner
gunnarbeutner / CMakeLists.txt
Created December 23, 2023 06:41
Point cloud preprocessing
cmake_minimum_required(VERSION 3.20.0)
project(pcl-import VERSION 0.1.0 LANGUAGES C CXX)
set(CMAKE_CXX_STANDARD 17)
set(CCCORELIB_SHARED OFF)
add_subdirectory(extern/CCCoreLib EXCLUDE_FROM_ALL)
add_executable(pcl-import main.cpp)
target_link_libraries(pcl-import CCCoreLib)