Warning, /frameworks/extra-cmake-modules/tests/ECMSetupVersionTest/new_project_simple_no_version_string_vars/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_simple VERSION 2.3.4)
0004 
0005 # trigger *_VERSION_STRING vars no longer being set
0006 set(ECM_GLOBAL_FIND_VERSION 5.83)
0007 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../modules)
0008 include(ECMSetupVersion)
0009 
0010 ecm_setup_version(PROJECT)
0011 
0012 include(../version_helpers.cmake)
0013 # NB: name comes from project() command
0014 standard_version_var_checks(new_project_simple 2.3.4)
0015 
0016 add_executable(dummy main.c)