Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 30, 2011, 4:36:04 AM (13 years ago)
Author:
rgrieder
Message:

To avoid further confusion, I linked ORXONOX_RELEASE to the 'Release' and 'MinSizeRel' configurations. The variable is therefore not anymore available in CMake.
That means defining what these configurations actually mean in the context of Orxonox:

Debug: No optimisations and additional debug information. NOT distributable.
RelWithDebInfo: Optimisations enabled, but also generates debug information. Should be the default mode for development.
Release: With optimisations, but no debug symbols. Use this configuration to make a release binary.
MinSizeRel: Like Release, but optimised for size instead of speed. Not really useful for us.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/external/tolua/lua/package.lua

    r8351 r8363  
    135135        i = i+1
    136136    end
     137
     138    output('\n')
     139    output('#ifdef ORXONOX_RELEASE\n')
     140    output('#  define TOLUA_RELEASE\n')
     141    output('#endif\n')
    137142
    138143    if self:requirecollection(_collect) then
Note: See TracChangeset for help on using the changeset viewer.