mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-01 07:36:22 +00:00
b849b20a8c
- Added a pre-compiled custom GN3S firmware. - Added a fully-compliant GNU Radio source block for GN3S USB dongle. It can be used also from GNU Radio companion and from Python applications. - Added a new GN3S_Signal_Source block. It is possible to disable the GN3S signal source compilation. See README. git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@217 64b25241-fba3-4117-9849-534c7e92360d
33 lines
1.3 KiB
CMake
33 lines
1.3 KiB
CMake
# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
|
|
|
|
IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
|
|
MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
|
|
ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
|
|
|
|
FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
|
|
STRING(REGEX REPLACE "\n" ";" files "${files}")
|
|
FOREACH(file ${files})
|
|
MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
|
|
IF(EXISTS "$ENV{DESTDIR}${file}")
|
|
EXEC_PROGRAM(
|
|
"@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
|
|
OUTPUT_VARIABLE rm_out
|
|
RETURN_VALUE rm_retval
|
|
)
|
|
IF(NOT "${rm_retval}" STREQUAL 0)
|
|
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
|
|
ENDIF(NOT "${rm_retval}" STREQUAL 0)
|
|
ELSEIF(IS_SYMLINK "$ENV{DESTDIR}${file}")
|
|
EXEC_PROGRAM(
|
|
"@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
|
|
OUTPUT_VARIABLE rm_out
|
|
RETURN_VALUE rm_retval
|
|
)
|
|
IF(NOT "${rm_retval}" STREQUAL 0)
|
|
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
|
|
ENDIF(NOT "${rm_retval}" STREQUAL 0)
|
|
ELSE(EXISTS "$ENV{DESTDIR}${file}")
|
|
MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
|
|
ENDIF(EXISTS "$ENV{DESTDIR}${file}")
|
|
ENDFOREACH(file)
|