cmake: change 'gsm' to 'grgsm'

Change-Id: I130a7912e179b1f04e68eb131e06800becca5a00
This commit is contained in:
Piotr Krysik 2020-02-16 08:46:26 +01:00 committed by Piotr Krysik
parent d8211032fa
commit 21b0f7d228
2 changed files with 6 additions and 6 deletions

View File

@ -176,5 +176,5 @@ add_subdirectory(grc)
########################################################################
install(FILES cmake/Modules/gr-gsmConfig.cmake
DESTINATION ${CMAKE_MODULES_DIR}/gsm
DESTINATION ${CMAKE_MODULES_DIR}/grgsm
)

View File

@ -136,18 +136,18 @@ include(GrTest)
# If your unit tests require special include paths, add them here
#include_directories()
# List all files that contain Boost.UTF unit tests here
list(APPEND test_gsm_sources
list(APPEND test_grgsm_sources
)
# Anything we need to link to for the unit tests go here
list(APPEND GR_TEST_TARGET_DEPS grgsm)
if(NOT test_gsm_sources)
if(NOT test_grgsm_sources)
MESSAGE(STATUS "No C++ unit tests... skipping")
return()
endif(NOT test_gsm_sources)
endif(NOT test_grgsm_sources)
foreach(qa_file ${test_gsm_sources})
GR_ADD_CPP_TEST("gsm_${qa_file}"
foreach(qa_file ${test_grgsm_sources})
GR_ADD_CPP_TEST("grgsm_${qa_file}"
${CMAKE_CURRENT_SOURCE_DIR}/${qa_file}
)
endforeach(qa_file)