目录
cmake代码
代码 cmake代码
cmake_minimum_required(VERSION 3.17)
project(TEST2)set(CMAKE_CXX_STANDARD 14)# Find PCL
find_package(PCL 1.8 REQUIRED)# If PCL was found, add its include directories to the project
if(PCL_FOUND)include_directories(${PCL_INC…
Python之禅
在Python的解释器中隐藏一个彩蛋,输入import this就会返回19条Python之禅,具体如下:
import this
The Zen of Python, by Tim Peters Python之禅 ,by Tim Peters
Beautiful is better than ugly.
优美好于丑陋&…