11 lines
312 B
CMake
11 lines
312 B
CMake
|
function(setup_fgfs_includes)
|
||
|
if(ENABLE_JSBSIM)
|
||
|
# FIXME - remove once JSBSim doesn't expose private headers
|
||
|
include_directories(${PROJECT_SOURCE_DIR}/src/FDM/JSBSim)
|
||
|
endif()
|
||
|
|
||
|
if(FG_HAVE_GPERFTOOLS)
|
||
|
include_directories(${GooglePerfTools_INCLUDE_DIR})
|
||
|
endif()
|
||
|
endfunction()
|