opus/cmake/CFeatureCheck.cmake
Davide Beatrici ce9d83be80
cmake/CFeatureCheck.cmake: fix feature tests failing when Opus is a submodule
CMAKE_SOURCE_DIR corresponds to the top project's source directory.
CMAKE_BINARY_DIR corresponds to the top project's binary directory.

The usage of these variables doesn't cause any problems when Opus is built as a standalone project.

This is not the case when Opus is added as submodule: the variables are set by the project that calls "add_subdirectory()".

The fix consists in using PROJECT_SOURCE_DIR and PROJECT_BINARY_DIR, which always refer to the current project.

Signed-off-by: Mark Harris <mark.hsj@gmail.com>
2020-06-13 00:21:19 -07:00

39 lines
1 KiB
CMake

# - Compile and run code to check for C features
#
# This functions compiles a source file under the `cmake` folder
# and adds the corresponding `HAVE_[FILENAME]` flag to the CMake
# environment
#
# c_feature_check(<FLAG> [<VARIANT>])
#
# - Example
#
# include(CFeatureCheck)
# c_feature_check(VLA)
if(__c_feature_check)
return()
endif()
set(__c_feature_check INCLUDED)
function(c_feature_check FILE)
string(TOLOWER ${FILE} FILE)
string(TOUPPER ${FILE} VAR)
string(TOUPPER "${VAR}_SUPPORTED" FEATURE)
if (DEFINED ${VAR}_SUPPORTED)
set(${VAR}_SUPPORTED 1 PARENT_SCOPE)
return()
endif()
if (NOT DEFINED COMPILE_${FEATURE})
message(STATUS "Performing Test ${FEATURE}")
try_compile(COMPILE_${FEATURE} ${PROJECT_BINARY_DIR} ${PROJECT_SOURCE_DIR}/cmake/${FILE}.c)
endif()
if(COMPILE_${FEATURE})
message(STATUS "Performing Test ${FEATURE} -- success")
set(${VAR}_SUPPORTED 1 PARENT_SCOPE)
else()
message(STATUS "Performing Test ${FEATURE} -- failed to compile")
endif()
endfunction()