Rename fgfs-tools-server and fgfs-tools-client to tg-construct-server and tg-construct-client
This commit is contained in:
parent
f32d340921
commit
e719fa66d2
6 changed files with 17 additions and 20 deletions
|
@ -112,11 +112,11 @@ find line
|
|||
double error = 200.0 in Construct/Main/main.cxx and change initial error
|
||||
to smth like 10. Then you need to rebuild everything in that directory.
|
||||
|
||||
I generally hate using fgfs-launch-clients and fgfs-launch-server so I'm
|
||||
I generally hate using tg-launch-clients and tg-launch-server so I'm
|
||||
doing everyting (almost) by hand. So I start from Construct/Parallel
|
||||
launch fgfs-tools-server on the computer with data on local disk and
|
||||
launch tg-construct-server on the computer with data on local disk and
|
||||
then slogin to other computers ( with data mounted over nfs) and run
|
||||
fgfs-tools-client in rude mode. After a while scenery is ready.
|
||||
tg-construct-client in rude mode. After a while scenery is ready.
|
||||
|
||||
That's all folks,
|
||||
Alexei.
|
||||
|
|
1
src/BuildTiles/Main/.gitignore
vendored
1
src/BuildTiles/Main/.gitignore
vendored
|
@ -1,2 +1 @@
|
|||
tg-construct
|
||||
fgfs-master
|
||||
|
|
4
src/BuildTiles/Parallel/.gitignore
vendored
4
src/BuildTiles/Parallel/.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
fgfs-tools-client
|
||||
fgfs-tools-server
|
||||
tg-construct-client
|
||||
tg-construct-server
|
||||
|
|
|
@ -1,22 +1,20 @@
|
|||
|
||||
|
||||
add_executable(fgfs-tools-server
|
||||
add_executable(tg-construct-server
|
||||
server.cxx)
|
||||
|
||||
target_link_libraries(fgfs-tools-server
|
||||
target_link_libraries(tg-construct-server
|
||||
${SIMGEAR_CORE_LIBRARIES}
|
||||
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
||||
)
|
||||
|
||||
install(TARGETS fgfs-tools-server RUNTIME DESTINATION bin)
|
||||
install(TARGETS tg-construct-server RUNTIME DESTINATION bin)
|
||||
|
||||
|
||||
add_executable(fgfs-tools-client
|
||||
add_executable(tg-construct-client
|
||||
client.cxx)
|
||||
|
||||
target_link_libraries(fgfs-tools-client
|
||||
target_link_libraries(tg-construct-client
|
||||
${SIMGEAR_CORE_LIBRARIES}
|
||||
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
||||
)
|
||||
|
||||
install(TARGETS fgfs-tools-client RUNTIME DESTINATION bin)
|
||||
install(TARGETS tg-construct-client RUNTIME DESTINATION bin)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
# fgfs-launch-clinets -- script to launch fgfs scenery construction clients
|
||||
# tg-launch-clients -- script to launch fgfs scenery construction clients
|
||||
#
|
||||
# Written by Curtis Olson, started May 1999.
|
||||
#
|
||||
|
@ -20,9 +20,9 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# $Id: fgfs-launch-clients,v 1.17 2006-01-24 19:39:48 curt Exp $
|
||||
# $Id: tg-launch-clients,v 1.17 2006-01-24 19:39:48 curt Exp $
|
||||
|
||||
CLIENT=fgfs-tools-client
|
||||
CLIENT=tg-construct-client
|
||||
HOSTNAME=`uname -n`
|
||||
|
||||
# check usage
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
# fgfs-launch-server -- script to launch fgfs scenery construction server
|
||||
# tg-launch-server -- script to launch fgfs scenery construction server
|
||||
#
|
||||
# Written by Curtis Olson, started May 1999.
|
||||
#
|
||||
|
@ -20,10 +20,10 @@
|
|||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#
|
||||
# $Id: fgfs-launch-server,v 1.9 2005-12-19 15:53:47 curt Exp $
|
||||
# $Id: tg-launch-server,v 1.9 2005-12-19 15:53:47 curt Exp $
|
||||
|
||||
|
||||
SERVER=fgfs-tools-server
|
||||
SERVER=tg-construct-server
|
||||
|
||||
# check usage
|
||||
if [ $# -lt 2 ]; then
|
Loading…
Add table
Reference in a new issue