Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 29, 2009, 9:04:27 PM (15 years ago)
Author:
rgrieder
Message:

Prefixed library directory for each internal third party library.
From now on, include for instance <tolua/tolua++> instead of <tolua++.h>
This may avoid problems if external include directories because some of our includes our modified. Consider e.g. ENet to be in /usr/include/enet/enet.h. Then you will have /usr/inlcude as include directory, possibly revealing an installed version of, say, TinyXML++.

File:
1 edited

Legend:

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

    r2608 r2610  
    2121
    2222INCLUDE_DIRECTORIES(
    23   ceguilua/ceguilua-${CEGUI_VERSION}/ceguilua
    24   cpptcl
    25   ois
    26   tinyxml
    27   tolua
     23  ceguilua/ceguilua-${CEGUI_VERSION}
    2824)
    2925
     
    4541
    4642# External libraries, but copied into the repository
     43ADD_SUBDIRECTORY(tolua)
    4744ADD_SUBDIRECTORY(ceguilua)
    4845ADD_SUBDIRECTORY(cpptcl)
     
    5047ADD_SUBDIRECTORY(ois)
    5148ADD_SUBDIRECTORY(tinyxml)
    52 ADD_SUBDIRECTORY(tolua)
    5349
    5450# Our own libraries
Note: See TracChangeset for help on using the changeset viewer.