Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 29, 2009, 6:59:19 PM (16 years ago)
Author:
rgrieder
Message:
  • Added orxonox version info. However I don't exactly what the actual is now, so please correct me if I'm wrong.
  • Small changes and fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/CMakeLists.txt

    r2597 r2599  
    1 PROJECT(Orxonox)
     1PROJECT(Orxonox C CXX)
    22
    33CMAKE_MINIMUM_REQUIRED(VERSION 2.6 FATAL_ERROR)
    44
    5 ############### Various Options #################
     5SET(ORXONOX_VERSION_MAJOR 0)
     6SET(ORXONOX_VERSION_MINOR 1)
     7SET(ORXONOX_VERSION_PATCH 0)
     8SET(ORXONOX_VERSION 0.1.0)
    69
    710# Keep devs from using the root directory as binary directory (messes up the source tree)
     
    1114
    1215# This sets where to look for modules (e.g. "Find*.cmake" files)
    13 SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
     16SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
    1417
    1518# Set binary output directories
     
    9194
    9295ADD_SUBDIRECTORY(src)
     96
     97# Configure the binary output directory
    9398ADD_SUBDIRECTORY(bin-config)
Note: See TracChangeset for help on using the changeset viewer.