mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-08 19:10:02 +00:00
21 lines
581 B
CMake
21 lines
581 B
CMake
|
# The set of languages for which implicit dependencies are needed:
|
||
|
SET(CMAKE_DEPENDS_LANGUAGES
|
||
|
)
|
||
|
# The set of files for implicit dependencies of each language:
|
||
|
|
||
|
# Targets to which this target links.
|
||
|
SET(CMAKE_TARGET_LINKED_INFO_FILES
|
||
|
)
|
||
|
|
||
|
# The include file search paths:
|
||
|
SET(CMAKE_C_TARGET_INCLUDE_PATH
|
||
|
"../lib"
|
||
|
"../include"
|
||
|
"lib"
|
||
|
"include"
|
||
|
"/usr/local/include"
|
||
|
)
|
||
|
SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
|
||
|
SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
|
||
|
SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH})
|