Apparently it's wrong to call enable_language before project

This commit is contained in:
Darryl Pogue 2024-05-31 18:21:25 -07:00
parent 0c52d6e2af
commit 9c7adfe297
No known key found for this signature in database
GPG key ID: CB824715C3E6FD41

View file

@ -6,11 +6,11 @@ cmake_minimum_required(VERSION 3.12)
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_SOURCE_DIR}/cmake")
include(CheckLanguage)
project(MetalTest)
check_language(Metal)
if(CMAKE_Metal_COMPILER)
enable_language(Metal)
endif()
project(MetalTest)
add_subdirectory(example)