This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |