我正在尝试构建专门的Youtube API,它包含在google-api-cpp-client库的标准分发中。该文档指出:
如果您下载 C++ 库并将它们解压缩
service_apis
到此 SDK 的源安装根目录中,则默认构建脚本将自动构建它们。
但是,构建脚本没有。构建包含在分布中的样本非常清楚地揭示了这一点。
Linking CXX executable ../../bin/calendar_sample
ld: library not found for -lgoogle_calendar_api
根的尾部CMakeLists.txt
内容如下:
add_subdirectory(src)
if (googleapis_build_samples)
set(googleapis_build_service_apis true) # force on
endif()
if (googleapis_build_service_apis)
add_subdirectory(service_apis)
endif()
# Build samples after the service apis
# but keep them under src
if (googleapis_build_samples)
add_subdirectory(src/samples)
endif()
最终导致这个 CMakeLists.txt (在 service_apis 目录的根目录中):
file(GLOB all_valid_subdirs RELATIVE
${CMAKE_CURRENT_SOURCE_DIR} "*/CMakeLists.txt")
foreach(dir ${all_valid_subdirs})
message(STATUS "path = ${dir}")
if(${dir} MATCHES "^([^/]*)//CMakeLists.txt")
string(REGEX REPLACE
"^([^/]*)//CMakeLists.txt" "\\1" dir_trimmed ${dir})
add_subdirectory(${dir_trimmed})
endif()
endforeach(dir)
我message
在 if 语句中放置了一个输出。似乎add_subdirectory
永远无法接通电话。确实会foreach
遍历所有子目录。
为什么正则表达式比较失败?