diff options
author | Alexey Andreev <aa13q@ya.ru> | 2020-02-18 20:41:22 +0300 |
---|---|---|
committer | Alexey Andreev <aa13q@ya.ru> | 2020-02-18 20:41:22 +0300 |
commit | 17c89693811a4aa27db700d8f9f278393c8e0926 (patch) | |
tree | e0d53212afd764dacc83dae2e2aee6d5ca3430c8 /tests | |
parent | 473483665d03c748f568a823218edfb9f5cbc7c9 (diff) | |
download | libquotient-17c89693811a4aa27db700d8f9f278393c8e0926.tar.gz libquotient-17c89693811a4aa27db700d8f9f278393c8e0926.zip |
[quotest] Refactor Cmake files with variable project name
Signed-off-by: Alexey Andreev <aa13q@ya.ru>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 490a2506..cb8c99f8 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -48,7 +48,9 @@ endforeach () find_package(Qt5 5.9 REQUIRED Network Gui Multimedia Test) get_filename_component(Qt5_Prefix "${Qt5_DIR}/../../../.." ABSOLUTE) -find_package(Quotient REQUIRED) +set(LIBRARY_NAME "Quotient") + +find_package(${LIBRARY_NAME} REQUIRED) get_filename_component(Quotient_Prefix "${Quotient_DIR}/../.." ABSOLUTE) message( STATUS "${PROJECT_NAME} configuration:" ) @@ -57,12 +59,12 @@ if (CMAKE_BUILD_TYPE) endif(CMAKE_BUILD_TYPE) message( STATUS " Compiler: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION}" ) message( STATUS " Qt: ${Qt5_VERSION} at ${Qt5_Prefix}" ) -message( STATUS " Quotient: ${Quotient_VERSION} at ${Quotient_Prefix}" ) +message( STATUS " ${LIBRARY_NAME}: ${${LIBRARY_NAME}_VERSION} at ${${LIBRARY_NAME}_Prefix}" ) set(example_SRCS quotest.cpp) add_executable(${PROJECT_NAME} ${example_SRCS}) -target_link_libraries(${PROJECT_NAME} Qt5::Core Qt5::Test Quotient) +target_link_libraries(${PROJECT_NAME} Qt5::Core Qt5::Test ${LIBRARY_NAME}) # Installation |