mirror of
https://github.com/dpogue/CMake-MetalShaderSupport.git
synced 2025-04-04 13:05:06 +00:00
Try out check_language for detecting support
This commit is contained in:
parent
ffc08b587a
commit
8a386d143b
1 changed files with 5 additions and 1 deletions
|
@ -1,8 +1,12 @@
|
|||
cmake_minimum_required(VERSION 3.12)
|
||||
|
||||
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_SOURCE_DIR}/cmake")
|
||||
include(CheckLanguage)
|
||||
|
||||
enable_language(Metal)
|
||||
check_language(Metal)
|
||||
if(CMAKE_Metal_COMPILER)
|
||||
enable_language(Metal)
|
||||
endif()
|
||||
project(metaltest)
|
||||
|
||||
add_library(metaltest
|
||||
|
|
Loading…
Add table
Reference in a new issue