Changeset 101
- Timestamp:
- Oct 25, 2007, 4:11:00 PM (17 years ago)
- Location:
- code/branches/network
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/Makefile
r99 r101 29 29 30 30 # The CMake executable. 31 CMAKE_COMMAND = /usr/ pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/cmake31 CMAKE_COMMAND = /usr/bin/cmake 32 32 33 33 # The command to remove a file. 34 RM = /usr/ pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/cmake -E remove -f34 RM = /usr/bin/cmake -E remove -f 35 35 36 36 # The program to use to edit the cache. 37 CMAKE_EDIT_COMMAND = /usr/ pack/cmake-2.4.5-mo/sun4u-sun-solaris2.8/bin/ccmake37 CMAKE_EDIT_COMMAND = /usr/bin/ccmake 38 38 39 39 # The top-level source directory on which CMake was run. … … 52 52 edit_cache: 53 53 @$(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) 55 55 56 56 # Special rule for the target edit_cache … … 60 60 rebuild_cache: 61 61 @$(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) 63 63 64 64 # Special rule for the target rebuild_cache -
code/branches/network/src/CMakeLists.txt
r95 r101 4 4 SET(SRC_FILES orxonox.cc) 5 5 SET(INC_FILES ExampleApplication.h ExampleFrameListener.h) 6 include_directories( "./tnl" )7 6 8 7 #Creates an executable 9 8 ADD_EXECUTABLE(../bin/main ${SRC_FILES} ${INC_FILES}) 10 9 #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) 10 TARGET_LINK_LIBRARIES(../bin/main ${OGRE_LIBRARIES} ${OIS_LIBRARIES}) 11
Note: See TracChangeset
for help on using the changeset viewer.