Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 101 for code/branches


Ignore:
Timestamp:
Oct 25, 2007, 4:11:00 PM (16 years ago)
Author:
anonymous
Message:

changed CMakeList.txt; now compiling

Location:
code/branches/network
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/Makefile

    r99 r101  
    2929
    3030# The CMake executable.
    31 CMAKE_COMMAND = /usr/pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/cmake
     31CMAKE_COMMAND = /usr/bin/cmake
    3232
    3333# The command to remove a file.
    34 RM = /usr/pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/cmake -E remove -f
     34RM = /usr/bin/cmake -E remove -f
    3535
    3636# The program to use to edit the cache.
    37 CMAKE_EDIT_COMMAND = /usr/pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/ccmake
     37CMAKE_EDIT_COMMAND = /usr/bin/ccmake
    3838
    3939# The top-level source directory on which CMake was run.
     
    5252edit_cache:
    5353        @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
    54         /usr/pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
     54        /usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
    5555
    5656# Special rule for the target edit_cache
     
    6060rebuild_cache:
    6161        @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
    62         /usr/pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
     62        /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
    6363
    6464# Special rule for the target rebuild_cache
  • code/branches/network/src/CMakeLists.txt

    r95 r101  
    44SET(SRC_FILES orxonox.cc)
    55SET(INC_FILES ExampleApplication.h  ExampleFrameListener.h)
    6 include_directories( "./tnl" )
    76
    87#Creates an executable
    98ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES})
    109#Links the executable against OGRE and OIS
    11 #TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES} /home/scheusso/orxonox/network/src/raklib/libraknet.so.2.4.5.2)
     10TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES})
     11
Note: See TracChangeset for help on using the changeset viewer.