Huge refactor, pulling server and local out into their own binaries
This commit is contained in:
parent
1b2010faba
commit
0ead12c7dd
16 changed files with 165 additions and 247 deletions
21
source/system/CMakeLists.txt
Normal file
21
source/system/CMakeLists.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
cmake_minimum_required(VERSION 2.8.7)
|
||||
|
||||
# Main ttrts library
|
||||
project( ttrts-system )
|
||||
|
||||
# Include the maths
|
||||
include_directories(
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
../ttrts
|
||||
)
|
||||
|
||||
# Add our sources
|
||||
set( SOURCES
|
||||
net.cpp
|
||||
filesystem.cpp
|
||||
)
|
||||
|
||||
# Add this library
|
||||
add_library( ${PROJECT_NAME} ${SOURCES} )
|
||||
|
||||
target_link_libraries( ${PROJECT_NAME} ttrts pthread )
|
Loading…
Add table
Add a link
Reference in a new issue