Warning, /frameworks/extra-cmake-modules/tests/ECMSetupVersionTest/new_project_version_file_abspath/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 cmake_minimum_required(VERSION 3.0.0)
0002 
0003 project(new_project_version_file_abspath VERSION 2.3.4)
0004 
0005 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../modules)
0006 include(ECMSetupVersion)
0007 
0008 ecm_setup_version(PROJECT
0009     PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/../NewProjectVersionAbsPath.cmake"
0010 )
0011 
0012 include(../version_helpers.cmake)
0013 
0014 # NB: name comes from project() command
0015 standard_version_var_checks(new_project_version_file_abspath 2.3.4)
0016 AnyNewer_2_3_4_checks("${CMAKE_CURRENT_BINARY_DIR}/../NewProjectVersionAbsPath.cmake")
0017 
0018 add_executable(dummy main.c)