如何正确地在CMakeLists.txt文件中配置头文件搜索路径?

如何正确地在CMakeLists.txt文件中配置头文件搜索路径

阅读 4.5k
1 个回答

请按照下述例子进行配置:

例1:

cpp文件中: #include ‘test.h’
目录:
|- cpp
|– CMakeLists.txt
|– include
|— test.h
CMakeLists.txt头文件:include_directories(${NATIVERENDER_ROOT_PATH}/include)

例2:

cpp文件中: #include ‘include/test/test.h’
目录:
|- cpp
|– CMakeLists.txt
|– include
|— test
|---- test.h
CMakeLists.txt头文件:include_directories(${NATIVERENDER_ROOT_PATH})

例3:

cpp文件中: #include ‘test/test.h’
目录:
|- cpp
|– CMakeLists.txt
|– include
|— test
|---- test.h
CMakeLists.txt头文件: include_directories(${NATIVERENDER_ROOT_PATH}/include)

例4:

cpp文件中: #include ‘test.h’
目录:
|- cpp
|– CMakeLists.txt
|– include
|— test
|---- test.h
CMakeLists.txt头文件: include_directories(${NATIVERENDER_ROOT_PATH}/include/test)

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题