2010-01-16 17:18:18 +03:00
|
|
|
#
|
|
|
|
# "$Id$"
|
|
|
|
#
|
2004-10-19 00:29:58 +04:00
|
|
|
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org)
|
2014-02-09 22:41:29 +04:00
|
|
|
# Written by Michael Surette
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
|
|
|
# Copyright 1998-2010 by Bill Spitzak and others.
|
|
|
|
#
|
2011-07-19 08:49:30 +04:00
|
|
|
# This library is free software. Distribution and use rights are outlined in
|
|
|
|
# the file "COPYING" which should have been included with this file. If this
|
|
|
|
# file is missing or damaged, see the license at:
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2011-07-19 08:49:30 +04:00
|
|
|
# http://www.fltk.org/COPYING.php
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
|
|
|
# Please report all bugs and problems on the following page:
|
|
|
|
#
|
2011-07-19 08:49:30 +04:00
|
|
|
# http://www.fltk.org/str.php
|
2010-01-16 17:18:18 +03:00
|
|
|
#
|
2004-10-19 00:29:58 +04:00
|
|
|
|
2010-04-06 02:33:58 +04:00
|
|
|
project(FLTK)
|
2014-02-09 22:41:29 +04:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
# basic setup
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
include(CMake/setup.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# check for headers, libraries and functions
|
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
include(CMake/resources.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# options
|
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
include(CMake/options.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
2013-09-11 16:54:40 +04:00
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
# final config and export
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
include(CMake/export.cmake)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# build examples - these have to be after fluid is built/imported
|
|
|
|
#######################################################################
|
|
|
|
if(OPTION_BUILD_EXAMPLES)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif(OPTION_BUILD_EXAMPLES)
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# installation
|
|
|
|
#######################################################################
|
2014-02-09 22:41:29 +04:00
|
|
|
include(CMake/install.cmake)
|