MOVED: From qnx_ports & gitlab.

This commit is contained in:
Jai Moraes 2024-12-04 12:51:54 -05:00
parent 3c4399ba46
commit 5371aecd26
2 changed files with 24 additions and 1 deletions

View file

@ -435,7 +435,14 @@ else ()
endif ()
gflags_define (PATH LIBRARY_INSTALL_DIR "Directory of installed libraries, e.g., \"lib64\"" "lib${LIB_SUFFIX}")
gflags_property (LIBRARY_INSTALL_DIR ADVANCED TRUE)
set (INCLUDE_INSTALL_DIR include)
# Cross-compiling for QNX does not install in the normal include path
if (QNX)
set (INCLUDE_INSTALL_DIR ${QNX_INCLUDE_INSTALL_DIR})
else()
set (INCLUDE_INSTALL_DIR include)
endif ()
set (CONFIG_INSTALL_DIR ${LIBRARY_INSTALL_DIR}/cmake/${PACKAGE_NAME})
set (PKGCONFIG_INSTALL_DIR ${LIBRARY_INSTALL_DIR}/pkgconfig)
endif ()

View file

@ -168,6 +168,22 @@ add_executable (gflags_declare_test gflags_declare_test.cc gflags_declare_flags.
add_test(NAME gflags_declare COMMAND gflags_declare_test --message "Hello gflags!")
set_tests_properties(gflags_declare PROPERTIES PASS_REGULAR_EXPRESSION "Hello gflags!")
# ----------------------------------------------------------------------------
# QNX Specific Installation (ctest not compatible)
if(QNX)
install(DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
DESTINATION ${RUNTIME_INSTALL_DIR}/gflags_tests)
install(DIRECTORY ${PROJECT_SOURCE_DIR}/test/
DESTINATION ${RUNTIME_INSTALL_DIR}/gflags_tests
FILES_MATCHING
PATTERN "flagfile.*"
PATTERN "gflags_unittest_flagfile"
PATTERN "config" EXCLUDE
PATTERN "nc" EXCLUDE
)
endif()
# ----------------------------------------------------------------------------
# configure Python script which configures and builds a test project
if (BUILD_NC_TESTS OR BUILD_CONFIG_TESTS)