From 7bb66ec7823de4e86ec425ddd8e22501ea6c21c5 Mon Sep 17 00:00:00 2001 From: Bryan Marfito Date: Sun, 21 Feb 2021 02:58:47 +0800 Subject: [PATCH] Fix missing folders and files during CMake installation of GRD files (#237) --- components/isceobj/RtcProc/CMakeLists.txt | 1 + components/isceobj/Sensor/CMakeLists.txt | 2 +- components/isceobj/Sensor/GRD/CMakeLists.txt | 7 +++++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 components/isceobj/Sensor/GRD/CMakeLists.txt diff --git a/components/isceobj/RtcProc/CMakeLists.txt b/components/isceobj/RtcProc/CMakeLists.txt index 67f5366..c6f6d27 100644 --- a/components/isceobj/RtcProc/CMakeLists.txt +++ b/components/isceobj/RtcProc/CMakeLists.txt @@ -2,6 +2,7 @@ InstallSameDir( __init__.py Factories.py RtcProc.py + runGeocode.py runLooks.py runNormalize.py runPreprocessor.py diff --git a/components/isceobj/Sensor/CMakeLists.txt b/components/isceobj/Sensor/CMakeLists.txt index e651305..5da1baa 100644 --- a/components/isceobj/Sensor/CMakeLists.txt +++ b/components/isceobj/Sensor/CMakeLists.txt @@ -1,7 +1,7 @@ add_subdirectory(db) add_subdirectory(TOPS) add_subdirectory(MultiMode) - +add_subdirectory(GRD) isce2_add_cdll(asa_im_decode src/asa_im_decode/asa_im_decode.c) set(installfiles diff --git a/components/isceobj/Sensor/GRD/CMakeLists.txt b/components/isceobj/Sensor/GRD/CMakeLists.txt new file mode 100644 index 0000000..e785b0c --- /dev/null +++ b/components/isceobj/Sensor/GRD/CMakeLists.txt @@ -0,0 +1,7 @@ +InstallSameDir( + __init__.py + GRDProduct.py + Radarsat2.py + Sentinel1.py + Terrasarx.py + ) \ No newline at end of file