Skip to content

Commit

Permalink
Install scripts to install prefix bin/ (#502)
Browse files Browse the repository at this point in the history
* Install scripts to install prefix bin/

* Use uppercase cmake variable
  • Loading branch information
rtburns-jpl authored and GitHub Enterprise committed Jul 16, 2020
1 parent 9e08074 commit 3f0e72f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ getpackage_cython()
getpackage_numpy()
getpackage_pybind11()

add_subdirectory(bin)
add_subdirectory(cxx) # Core C++ library
add_subdirectory(python) # Python bindings
add_subdirectory(tests) # Unit tests
Expand Down
10 changes: 10 additions & 0 deletions bin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
set(PROGS
crossmul.py
geo2rdr.py
rdr2geo.py
resampSlc.py
)

install(PROGRAMS ${PROGS}
DESTINATION ${CMAKE_INSTALL_BINDIR}
)

0 comments on commit 3f0e72f

Please sign in to comment.