From 8fb13697a1adf64daa9139fa71b9eb92015de94b Mon Sep 17 00:00:00 2001 From: Tor Egge Date: Tue, 4 Feb 2020 20:07:41 +0100 Subject: Use CMAKE_CURRENT_LIST_DIR instead of CMAKE_SOURCE_DIR, to allow inclusion from dependent extra projects. --- build_settings.cmake | 2 +- vtag.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build_settings.cmake b/build_settings.cmake index 679eed558d5..53fcbbad9a2 100644 --- a/build_settings.cmake +++ b/build_settings.cmake @@ -1,7 +1,7 @@ # Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. # @author Vegard Sjonfjell -include(vtag.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/vtag.cmake) # Build options # Whether to build unit tests as part of the 'all' target diff --git a/vtag.cmake b/vtag.cmake index eefbb638ab2..a7aaf433024 100644 --- a/vtag.cmake +++ b/vtag.cmake @@ -1,10 +1,10 @@ # Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -if(NOT EXISTS "${CMAKE_SOURCE_DIR}/dist/vtag.map") +if(NOT EXISTS "${CMAKE_CURRENT_LIST_DIR}/dist/vtag.map") message(FATAL_ERROR "dist/vtag.map does not exist, please run bootstrap.sh before configuring cmake" ) endif() function(get_vtag_define KEY) - file(STRINGS dist/vtag.map VALUE REGEX "${KEY}") + file(STRINGS ${CMAKE_CURRENT_LIST_DIR}/dist/vtag.map VALUE REGEX "${KEY}") list(GET VALUE 0 LINE) separate_arguments(DATA UNIX_COMMAND "${LINE}") list(GET DATA 1 VALUE) -- cgit v1.2.3