mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:39:59 +07:00
16 lines
449 B
CMake
16 lines
449 B
CMake
cmake_minimum_required(VERSION 3.1)
|
|
project(fsnotifier C)
|
|
|
|
if(NOT APPLE)
|
|
message(FATAL_ERROR "macOS only.")
|
|
endif()
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64")
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.9)
|
|
|
|
add_compile_options("-fmodules" "-flto=full" "-Wall" "-Wextra" "-Wpedantic" "-Wno-newline-eof")
|
|
add_executable(fsnotifier fsnotifier.c)
|
|
|
|
install(TARGETS fsnotifier DESTINATION ${CMAKE_CURRENT_LIST_DIR}/../../../bin/mac)
|