[Avida-cvs] [avida-svn] r621 - branches/developers/avida-edward

kaben@myxo.css.msu.edu kaben at myxo.css.msu.edu
Mon Apr 17 18:36:39 PDT 2006


Author: kaben
Date: 2006-04-17 21:36:39 -0400 (Mon, 17 Apr 2006)
New Revision: 621

Modified:
   branches/developers/avida-edward/CMakeLists.txt
Log:


Moved PROJECT statement to a place before definitions of
CMAKE_INSTALL_PREFIX, EXECUTABLE_OUTPUT_PATH, LIBRARY_OUTPUT_PATH, per
note from Dave.



Modified: branches/developers/avida-edward/CMakeLists.txt
===================================================================
--- branches/developers/avida-edward/CMakeLists.txt	2006-04-18 00:15:05 UTC (rev 620)
+++ branches/developers/avida-edward/CMakeLists.txt	2006-04-18 01:36:39 UTC (rev 621)
@@ -60,6 +60,15 @@
   "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel."
 )
 
+# This section introduces the Avida project to CMake.  In this file, it
+# must be between the configuration options above (otherwise it
+# overrides their defaults) and the configuration options, cmake module
+# includes, and convenience variables below (otherwise some variables
+# can't be properly defined because PROJECT_SOURCE_DIR and
+# PROJECT_BUILD_DIR aren't yet defined).
+
+PROJECT(AVIDA)
+
 # Default location for installed software / configs / docs is work
 # subdirectory of build directory.
 SET(CMAKE_INSTALL_PREFIX
@@ -84,14 +93,6 @@
 )
 
 
-# This section introduces the Avida project to CMake.  In this file, it
-# must be between the configuration options above (otherwise it
-# overrides their defaults) and the configuration options, cmake module
-# includes, and convenience variables below (otherwise some variables
-# can't be properly defined because PROJECT_SOURCE_DIR and
-# PROJECT_BUILD_DIR aren't yet defined).
-
-PROJECT(AVIDA)
 SUBDIRS(source)
 
 # Experimental Boost.Python interface to avida is disabled by default.




More information about the Avida-cvs mailing list