1
0
Fork 0

Change SG linking order and add more tools to the cmake build system

that compile now. Also change .gitignore files to include some new
binary names
This commit is contained in:
Christian Schmitt 2011-10-25 01:05:49 +02:00
parent 89ca2ae1e4
commit d8d3be6fb1
12 changed files with 26 additions and 8 deletions

View file

@ -121,14 +121,14 @@ if(${SIMGEAR_LIBRARIES} STREQUAL "SIMGEAR_LIBRARIES-NOTFOUND")
timing
io
serial
math
structure
props
xml
misc
threads
debug
magvar
math)
magvar)
set(scene_comps
ephem

View file

@ -1 +1,2 @@
testarray
test_array

View file

@ -1,5 +1,4 @@
add_library(Array STATIC
array.cxx array.hxx
)
@ -10,3 +9,5 @@ target_link_libraries(test_array
Array
${SIMGEAR_CORE_LIBRARIES}
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES})
install(TARGETS test_array RUNTIME DESTINATION bin)

View file

@ -1 +1,2 @@
testhgt
test_hgt

View file

@ -1 +1,2 @@
test-landcover
test_landcover

View file

@ -9,11 +9,12 @@ add_subdirectory(GDALChop)
add_subdirectory(GSHHS)
add_subdirectory(DemChop)
add_subdirectory(DemInfo)
#add_subdirectory(DemRaw2ascii)
add_subdirectory(DemRaw2ascii)
add_subdirectory(E00Lines)
#add_subdirectory(Photo)
add_subdirectory(Photo)
add_subdirectory(ShapeFile)
add_subdirectory(TGVPF)
add_subdirectory(Terra)
add_subdirectory(TerraFit)
add_subdirectory(OGRDecode)
add_subdirectory(UserDef)

View file

@ -34,9 +34,8 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h> /* tmp for read() */
#endif
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <cstdlib>
extern "C" {
#include "rawdem.h"

View file

@ -9,3 +9,4 @@ target_link_libraries(e00lines
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
${GPC_LIBRARY})
install(TARGETS e00lines RUNTIME DESTINATION bin)

View file

@ -1,2 +1,3 @@
debug
gshhs
gshhs_debug

View file

@ -7,3 +7,4 @@ target_link_libraries(tgvpf
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
${GPC_LIBRARY})
install(TARGETS tgvpf RUNTIME DESTINATION bin)

View file

@ -1,2 +1,3 @@
terra
xterra
terra_bin

View file

@ -0,0 +1,10 @@
add_executable(tguserdef tguserdef.cxx)
target_link_libraries(tguserdef
Polygon Geometry Output poly2tri TriangleJRS
${SIMGEAR_CORE_LIBRARIES}
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
${GPC_LIBRARY})
install(TARGETS tguserdef RUNTIME DESTINATION bin)