Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cmake/isce2_helpers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ macro(isce2_add_cdll target)
PREFIX ""
OUTPUT_NAME ${target}
SUFFIX .so)
# On macOS, conda-forge gfortran may produce dylibs without libSystem linked.
# Explicitly link against System to ensure valid shared libraries.
if(APPLE)
target_link_libraries(${target} PRIVATE "-lSystem")
endif()

# If we're the root cmake project (e.g. not add_subdirectory):
if("${CMAKE_SOURCE_DIR}" STREQUAL "${PROJECT_SOURCE_DIR}")
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ config.log
insar.log
isce.log
.ipynb_checkpoints

build/
install/
data/
1 change: 1 addition & 0 deletions components/isceobj/Sensor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ set(installfiles
UAVSAR_Stack.py
SAOCOM_SLC.py
Lutan1.py
Capella.py
)

if(HDF5_FOUND)
Expand Down
Loading