-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed namespace package * if csv option is present, the resulting python object now contains an entry with the resulting csv string Signed-off-by: Lukas Burgholzer <lukas.burgholzer@jku.at>
- Loading branch information
1 parent
143ff2e
commit e2d83e7
Showing
5 changed files
with
25 additions
and
15 deletions.
There are no files selected for viewing
Submodule pybind11
updated
62 files
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,6 +1,7 @@ | ||
add_subdirectory("../../extern/pybind11" "extern/pybind11") | ||
add_subdirectory("${PROJECT_SOURCE_DIR}/extern/pybind11" "extern/pybind11") | ||
add_library(pybind11 ALIAS pybind11::pybind11) | ||
add_subdirectory("../../extern/pybind11_json" "extern/pybind11_json") | ||
|
||
add_subdirectory("${PROJECT_SOURCE_DIR}/extern/pybind11_json" "extern/pybind11_json") | ||
|
||
pybind11_add_module(py${PROJECT_NAME} bindings.cpp EXCLUDE_FROM_ALL) | ||
target_link_libraries(py${PROJECT_NAME} PUBLIC pybind11_json ${PROJECT_NAME}) |
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