-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conversion to explicit paths for guile extensions
- Loading branch information
1 parent
bf15e46
commit 608cd92
Showing
6 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 1,8 @@ | ||
(define-module (opencog octomap)) | ||
|
||
(use-modules (srfi srfi-1) (opencog) (opencog exec)) | ||
(use-modules (opencog oc-config)) | ||
|
||
; Load the C library that calls the nameserver to load the types. | ||
(load-extension "liboctomap-types" "octomap_types_init") | ||
(load-extension (string-append opencog-ext-path-point-memory "liboctomap-types") "octomap_types_init") | ||
(load "spacetime/octomap/octomap_types.scm") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 1,5 @@ | ||
(define-module (opencog pointmem)) | ||
|
||
(use-modules (opencog)) | ||
(use-modules (opencog oc-config)) | ||
|
||
(load-extension "libpoint_memory" "opencog_ato_pointmem_init") | ||
(load-extension (string-append opencog-ext-path-point-memory "libpoint_memory") "opencog_ato_pointmem_init") |