549c5eccb9
Factor out and use this core simgear depenency library cmake variable.
12 lines
260 B
CMake
12 lines
260 B
CMake
|
|
add_executable(fgviewer fgviewer.cxx)
|
|
|
|
target_link_libraries(fgviewer
|
|
${SIMGEAR_LIBRARIES}
|
|
${OPENSCENEGRAPH_LIBRARIES}
|
|
${OPENGL_LIBRARIES}
|
|
${PLIB_LIBRARIES}
|
|
${SIMGEAR_CORE_LIBRARY_DEPENDENCIES}
|
|
)
|
|
|
|
install(TARGETS fgviewer RUNTIME DESTINATION bin)
|