Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 13, 2009, 10:16:19 AM (16 years ago)
Author:
rgrieder
Message:
  • Using REGEX "…" EXCLCUDE in INSTALL avoids a call to FILE(GLOB) (quite slow) at CMake (instead of install) time
  • Excluded audio target again (linker tests were successfull so far)
  • Removed unexplainable code I once inserted in cpptcl.cc, didn't experience the problem anymore (was weird behaviour anyway)
  • Sorting out some library depdencies (just a detail)
Location:
code/branches/buildsystem2/src/cpptcl
Files:
3 edited

Legend:

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

    r2651 r2652  
    4040ENDIF()
    4141
    42 TARGET_LINK_LIBRARIES(cpptcl_orxonox
    43   ${TCL_LIBRARY}
    44 )
     42TARGET_LINK_LIBRARIES(cpptcl_orxonox ${TCL_LIBRARY})
  • code/branches/buildsystem2/src/cpptcl/changes_orxonox.diff

    r2641 r2652  
    4747 {
    4848      interp_ =  interp;
    49 @@ -940,6 +952,10 @@
    50       // delete all callbacks that were registered for given interpreter
    51  
    52       {
    53 +          // TODO: why could this probably be necessary? map::find of empty map
    54 +          // shouldn't be a problem.
    55 +          if (callbacks.size() == 0)
    56 +            return;
    57            callback_map::iterator it = callbacks.find(interp);
    58            if (it == callbacks.end())
    59            {
    6049--- cpptcl.h    Wed Jan 28 20:56:11 2009
    6150+++ cpptcl.h    Sat Jan 24 12:52:54 2009
  • code/branches/buildsystem2/src/cpptcl/cpptcl.cc

    r2641 r2652  
    953953
    954954     {
    955           // TODO: why could this probably be necessary? map::find of empty map
    956           // shouldn't be a problem.
    957           if (callbacks.size() == 0)
    958             return;
    959955          callback_map::iterator it = callbacks.find(interp);
    960956          if (it == callbacks.end())
Note: See TracChangeset for help on using the changeset viewer.