1
0
Fork 0

Rename fgfs-tools-server and fgfs-tools-client to tg-construct-server and tg-construct-client

This commit is contained in:
Christian Schmitt 2012-08-28 16:19:19 +02:00
parent f32d340921
commit e719fa66d2
6 changed files with 17 additions and 20 deletions

View file

@ -112,11 +112,11 @@ find line
double error = 200.0 in Construct/Main/main.cxx and change initial error 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. 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 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 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, That's all folks,
Alexei. Alexei.

View file

@ -1,2 +1 @@
tg-construct tg-construct
fgfs-master

View file

@ -1,2 +1,2 @@
fgfs-tools-client tg-construct-client
fgfs-tools-server tg-construct-server

View file

@ -1,22 +1,20 @@
add_executable(tg-construct-server
add_executable(fgfs-tools-server
server.cxx) server.cxx)
target_link_libraries(fgfs-tools-server target_link_libraries(tg-construct-server
${SIMGEAR_CORE_LIBRARIES} ${SIMGEAR_CORE_LIBRARIES}
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES} ${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) client.cxx)
target_link_libraries(fgfs-tools-client target_link_libraries(tg-construct-client
${SIMGEAR_CORE_LIBRARIES} ${SIMGEAR_CORE_LIBRARIES}
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES} ${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
) )
install(TARGETS fgfs-tools-client RUNTIME DESTINATION bin) install(TARGETS tg-construct-client RUNTIME DESTINATION bin)

View file

@ -1,6 +1,6 @@
#!/bin/sh #!/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. # Written by Curtis Olson, started May 1999.
# #
@ -20,9 +20,9 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # 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` HOSTNAME=`uname -n`
# check usage # check usage

View file

@ -1,6 +1,6 @@
#!/bin/sh #!/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. # Written by Curtis Olson, started May 1999.
# #
@ -20,10 +20,10 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # 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 # check usage
if [ $# -lt 2 ]; then if [ $# -lt 2 ]; then