The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
212 B
9 lines
212 B
4 years ago
|
cmake_minimum_required(VERSION 3.5)
|
||
|
|
||
|
project(cmTest)
|
||
|
|
||
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||
|
|
||
|
add_library(cmTest STATIC cmTest.c cmTest.m)
|
||
|
target_compile_definitions(cmTest PUBLIC SOME_MAGIC_DEFINE=42)
|