8 lines
No EOL
266 B
CMake
8 lines
No EOL
266 B
CMake
add_library(metal-cpp STATIC src/metal.cpp)
|
|
target_include_directories(metal-cpp PUBLIC include)
|
|
set_engine_properties(metal-cpp)
|
|
target_link_libraries(metal-cpp
|
|
"-framework Metal"
|
|
"-framework Foundation"
|
|
"-framework QuartzCore"
|
|
objc) |