Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 29, 2009, 11:35:54 PM (15 years ago)
Author:
rgrieder
Message:

This commit gets a little ugly, couldn't separate that anymore:

  • Renamed UseTolua.cmake to GenerateLuaBindings.cmake
  • Applied the macros for compiler flags, linker flags, header files and source groups Updated the whole build tree for that
  • Created real compiler config scripts (BuildConfigGCC.cmake and BuildConfigMSVC.cmake)
  • Large scale clean up in BuildConfig.cmake
  • You can now specify your own LibraryConfig and BuildConfig script via CMake Cache
  • Lots of small changes and fixes
File:
1 edited

Legend:

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

    r2588 r2621  
    1 SET( SRC_FILES
     1SET(OCR_FILES
     2  OgreCEGUIRenderer.h
     3  OgreCEGUIResourceProvider.h
     4  OgreCEGUITexture.h
     5
    26  OgreCEGUIRenderer.cpp
    37  OgreCEGUIResourceProvider.cpp
    48  OgreCEGUITexture.cpp
    59)
     10GENERATE_SOURCE_GROUPS(${OCR_FILES})
    611
    7 ADD_LIBRARY(ogreceguirenderer_orxonox SHARED ${SRC_FILES})
    8 
     12ADD_LIBRARY(ogreceguirenderer_orxonox SHARED ${OCR_FILES})
    913SET_TARGET_PROPERTIES(ogreceguirenderer_orxonox PROPERTIES DEFINE_SYMBOL "OGRE_GUIRENDERER_EXPORTS")
    1014TARGET_LINK_LIBRARIES(ogreceguirenderer_orxonox
Note: See TracChangeset for help on using the changeset viewer.