mirror of https://github.com/fltk/fltk.git
FLTK - Fast Light Tool Kit - https://github.com/fltk/fltk - cross platform GUI development
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.
53 lines
1.8 KiB
53 lines
1.8 KiB
# |
|
# "$Id$" |
|
# |
|
# Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org) |
|
# Written by Michael Surette |
|
# |
|
# Copyright 1998-2010 by Bill Spitzak and others. |
|
# |
|
# 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: |
|
# |
|
# http://www.fltk.org/COPYING.php |
|
# |
|
# Please report all bugs and problems on the following page: |
|
# |
|
# http://www.fltk.org/str.php |
|
# |
|
|
|
project(FLTK) |
|
cmake_minimum_required(VERSION 2.8) |
|
|
|
####################################################################### |
|
# basic setup |
|
####################################################################### |
|
include(CMake/setup.cmake) |
|
|
|
####################################################################### |
|
# check for headers, libraries and functions |
|
####################################################################### |
|
include(CMake/resources.cmake) |
|
|
|
####################################################################### |
|
# options |
|
####################################################################### |
|
include(CMake/options.cmake) |
|
|
|
####################################################################### |
|
# final config and export |
|
####################################################################### |
|
include(CMake/export.cmake) |
|
|
|
####################################################################### |
|
# build examples - these have to be after fluid is built/imported |
|
####################################################################### |
|
if(OPTION_BUILD_EXAMPLES) |
|
add_subdirectory(test) |
|
endif(OPTION_BUILD_EXAMPLES) |
|
|
|
####################################################################### |
|
# installation |
|
####################################################################### |
|
include(CMake/install.cmake)
|
|
|