1- # C M A K E L I S T S . T X T
2- # SCL
1+ # C M A K E L I S T S . T X T F O R S C L
32#
4- # Copyright (c) 2010 United States Government as represented by
5- # the U.S. Army Research Laboratory.
3+ # This file is Copyright (c) 2010 United States Government as
4+ # represented by the U.S. Army Research Laboratory.
65#
76# Redistribution and use in source and binary forms, with or without
87# modification, are permitted provided that the following conditions
3332# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3433
3534# *******************************************************************
36- # *** BRL-CAD 's CMakeLists.txt ***
35+ # *** SCL 's CMakeLists.txt ***
3736# *******************************************************************
3837
3938# This file contains the top level CMakeLists.txt logic for the
40- # BRL-CAD software package.
39+ # SCL software package.
4140
4241# Minimum required version of CMake
4342CMAKE_MINIMUM_REQUIRED (VERSION 2.8 )
@@ -67,7 +66,7 @@ SET(SCL_VERSION "${SCL_VERSION_MAJOR}.${SCL_VERSION_MINOR}.${SCL_VERSION_PATCH}"
6766
6867# CMake derives much of its functionality from modules, typically
6968# stored in one directory - let CMake know where to find them.
70- SET (SCL_CMAKE_DIR "${SCL_SOURCE_DIR} /CMake " )
69+ SET (SCL_CMAKE_DIR "${SCL_SOURCE_DIR} /cmake " )
7170SET (CMAKE_MODULE_PATH "${SCL_CMAKE_DIR} ;${CMAKE_MODULE_PATH} " )
7271
7372INCLUDE (${SCL_CMAKE_DIR} /SCL_Utils.cmake )
@@ -156,11 +155,10 @@ ENDFOREACH()
156155#-----------------------------------------------------------------------------
157156# Configure install locations.
158157
159- # The location in which to install BRLCAD . Need a good Debug location
158+ # The location in which to install SCL . Need a good Debug location
160159# for Windows. Only do this if CMAKE_INSTALL_PREFIX hasn't been set
161160# already, to try and allow parent builds (if any) some control.
162161IF (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
163- MESSAGE ("HAVE_DEFAULT_PREFIX" )
164162 IF (NOT WIN32 )
165163 IF ("${CMAKE_BUILD_TYPE} " MATCHES "Release" )
166164 SET (CMAKE_INSTALL_PREFIX "/usr" )
@@ -174,7 +172,6 @@ IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
174172 SET (CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} CACHE STRING "SCL install prefix" FORCE )
175173 SET (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT 0)
176174ENDIF (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT )
177- SET (BRLCAD_PREFIX ${CMAKE_INSTALL_PREFIX} CACHE STRING "SCL install prefix" )
178175
179176OPTION (SCL-BUILD_EXPRESS_ONLY "Only build express parser." OFF )
180177MARK_AS_ADVANCED (SCL-BUILD_EXPRESS_ONLY )
0 commit comments