1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
cmake_minimum_required(VERSION 3.10.0)
project(feathernotes)
set(CMAKE_BUILD_TYPE Release)
add_definitions(-Wall)
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
if(HAIKU)
set(CMAKE_INSTALL_PREFIX "/boot/home/config/non-packaged/apps/FeatherNotes")
elseif(APPLE)
set(CMAKE_INSTALL_PREFIX "/Applications")
elseif(UNIX)
set(CMAKE_INSTALL_PREFIX "/usr")
elseif(OS2)
set(CMAKE_INSTALL_PREFIX "/@unixroot/usr/")
endif()
endif()
option(WITH_HUNSPELL "Compiling with Hunspell..." ON)
option(WITHOUT_X11 "Compiling without X11..." OFF)
# OS/2 never has X11
if (OS2)
option(WITHOUT_X11 "Compiling without X11..." ON)
endif()
add_subdirectory(feathernotes)
|