9998d78d63
Remove unnecessary language initializations. Change the main CMakeLists.txt project() call to specify NONE. Use enable_language(CXX) instead of project() in cases that need it to avoid enabling C too.
7 lines
155 B
CMake
7 lines
155 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(${RunCMake_TEST} NONE)
|
|
if(NOT TEST_FILE)
|
|
set(TEST_FILE ${RunCMake_TEST}.cmake)
|
|
endif()
|
|
include(${TEST_FILE})
|