作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个大型跨平台项目,需要在各个地方构建;在某些地方,可能会使用不同的 UI 工具包、声音 API 等,我正在尝试找出根据存在的库自动配置哪些目标的最佳方法。
例如,我正在尝试的代码是:
find_library(PC_EGL EGL)
find_library(PC_GLESv2 GLESv2)
find_library(PC_Xxf86vm Xxf86vm)
if (DEFINED PC_EGL AND DEFINED PC_GLESv2 AND DEFINED PC_Xxf86vm)
add_executable(foo foo.cpp)
target_link_libraries(foo ${PC_EGL} ${PC_GLESv2} ${PC_Xxf86vm})
endif()
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
PC_GLESv2
linked by target "foo" in directory /path/to/platform
if (NOT PC_EGL MATCH "-NOTFOUND")
最佳答案
简直就是
if(PC_EGL AND PC_GLESv2 AND PC_GLESv2)
0
,
FALSE
,
OFF
,
ANYTHING-NOTFOUND
作为假的。
关于build - CMake 根据库的存在有条件地构建目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10003238/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!