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:
parent
89ca2ae1e4
commit
d8d3be6fb1
12 changed files with 26 additions and 8 deletions
|
@ -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
|
||||
|
|
1
src/Lib/Array/.gitignore
vendored
1
src/Lib/Array/.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
testarray
|
||||
test_array
|
||||
|
|
|
@ -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)
|
||||
|
|
1
src/Lib/HGT/.gitignore
vendored
1
src/Lib/HGT/.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
testhgt
|
||||
test_hgt
|
||||
|
|
1
src/Lib/landcover/.gitignore
vendored
1
src/Lib/landcover/.gitignore
vendored
|
@ -1 +1,2 @@
|
|||
test-landcover
|
||||
test_landcover
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -9,3 +9,4 @@ target_link_libraries(e00lines
|
|||
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
||||
${GPC_LIBRARY})
|
||||
|
||||
install(TARGETS e00lines RUNTIME DESTINATION bin)
|
||||
|
|
1
src/Prep/GSHHS/.gitignore
vendored
1
src/Prep/GSHHS/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
debug
|
||||
gshhs
|
||||
gshhs_debug
|
||||
|
|
|
@ -7,3 +7,4 @@ target_link_libraries(tgvpf
|
|||
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
||||
${GPC_LIBRARY})
|
||||
|
||||
install(TARGETS tgvpf RUNTIME DESTINATION bin)
|
||||
|
|
1
src/Prep/Terra/.gitignore
vendored
1
src/Prep/Terra/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
terra
|
||||
xterra
|
||||
terra_bin
|
||||
|
|
10
src/Prep/UserDef/CMakeLists.txt
Normal file
10
src/Prep/UserDef/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Reference in a new issue