Skip to content

Commit

Permalink
feat(nest): update nest extension installation dir
Browse files Browse the repository at this point in the history
The `/nest` bit seems to be included in `NEST_LIBDIR` now, so does not
need to be explicitly added:

https://github.com/nest/nest-extension-module/blob/master/CMakeLists.txt#L178

I expect `nest-config --libdir` provides the complete path already.
  • Loading branch information
sanjayankur31 committed Jul 27, 2023
1 parent 75cacd6 commit c6de29f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyNN/nest/extensions/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ execute_process(
set( CMAKE_MACOSX_RPATH ON )

# Install all stuff to NEST's install directories.
set( CMAKE_INSTALL_LIBDIR ${NEST_LIBDIR}/nest CACHE STRING "object code libraries (lib/nest or lib64/nest or lib/<multiarch-tuple>/nest on Debian)" FORCE )
set( CMAKE_INSTALL_LIBDIR ${NEST_LIBDIR} CACHE STRING "object code libraries (lib/nest or lib64/nest or lib/<multiarch-tuple>/nest on Debian)" FORCE )
set( CMAKE_INSTALL_DOCDIR ${NEST_DOCDIR} CACHE STRING "documentation root (DATAROOTDIR/doc/nest)" FORCE )
set( CMAKE_INSTALL_DATADIR ${NEST_DATADIR} CACHE STRING "read-only architecture-independent data (DATAROOTDIR/nest)" FORCE )

Expand Down

0 comments on commit c6de29f

Please sign in to comment.