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.
20 lines
563 B
20 lines
563 B
cmake_minimum_required(VERSION 3.5) |
|
|
|
project(cmMod) |
|
set (CMAKE_CXX_STANDARD 14) |
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}) |
|
|
|
add_definitions("-DDO_NOTHING_JUST_A_FLAG=1") |
|
|
|
add_library(cmModLib++ SHARED cmMod.cpp) |
|
target_compile_definitions(cmModLib++ PRIVATE MESON_MAGIC_FLAG=21) |
|
target_compile_definitions(cmModLib++ INTERFACE MESON_MAGIC_FLAG=42) |
|
|
|
# Test PCH support |
|
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16.0") |
|
target_precompile_headers(cmModLib++ PRIVATE "cpp_pch.hpp") |
|
endif() |
|
|
|
include(GenerateExportHeader) |
|
generate_export_header(cmModLib++)
|
|
|