Last change
on this file since 413 was
376,
checked in by rgrieder, 17 years ago
|
- removed the linker flags, since —no-undefined has no influence when building shared libraries (sorry Nico for you efforts)
—no-allow-shlib-undefined should exist, but doesn't according to the man page, and it also doesn't work anyway.
- removed linkage of ENet to the main executable as well (not necessary)
|
File size:
351 bytes
|
Rev | Line | |
---|
[341] | 1 | PROJECT(Orxonox) |
---|
| 2 | |
---|
| 3 | SET( NETWORK_SRC_FILES |
---|
[376] | 4 | Client.cc |
---|
| 5 | ClientConnection.cc |
---|
| 6 | ConnectionManager.cc |
---|
| 7 | GameStateManager.cc |
---|
| 8 | PacketBuffer.cc |
---|
| 9 | PacketDecoder.cc |
---|
| 10 | PacketGenerator.cc |
---|
| 11 | Server.cc |
---|
| 12 | Synchronisable.cc |
---|
[341] | 13 | ) |
---|
| 14 | |
---|
[372] | 15 | ADD_LIBRARY(network SHARED ${NETWORK_SRC_FILES}) |
---|
[376] | 16 | TARGET_LINK_LIBRARIES(network ${ENet_LIBRARY} ${Boost_thread_LIBRARIES}) |
---|
Note: See
TracBrowser
for help on using the repository browser.