From: Wouter van Oortmerssen Date: Fri, 24 Oct 2014 21:26:29 +0000 (-0700) Subject: Made CMakeLists.txt compatible with older versions of CMake. X-Git-Tag: v1.1.0~66 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cdf3eb19bd58db999822048c164e30c26b19178;p=platform%2Fupstream%2Fflatbuffers.git Made CMakeLists.txt compatible with older versions of CMake. By replacing DIRECTORY by PATH: http://www.cmake.org/cmake/help/v3.0/command/get_filename_component.html Change-Id: I6f5802deeda53dea443b255294235e43e7bb5389 Tested: on Linux. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index a6f21cb..811e6f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,7 +72,7 @@ include_directories(include) add_executable(flatc ${FlatBuffers_Compiler_SRCS}) function(compile_flatbuffers_schema_to_cpp SRC_FBS) - get_filename_component(SRC_FBS_DIR ${SRC_FBS} DIRECTORY) + get_filename_component(SRC_FBS_DIR ${SRC_FBS} PATH) string(REGEX REPLACE "\\.fbs$" "_generated.h" GEN_HEADER ${SRC_FBS}) add_custom_command( OUTPUT ${GEN_HEADER}