-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-2024-spring' into 'master'
2024 Spring Release Closes #216 See merge request barkhauseninstitut/wicon/hermespy!193
- Loading branch information
Showing
15 changed files
with
258 additions
and
317 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 was deleted.
Oops, something went wrong.
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,29 +1,31 @@ | ||
set(CMAKE_CXX_STANDARD 14) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
project(aff3ct_binding VERSION "0.3.0") | ||
project(aff3ct_binding VERSION "1.3.0") | ||
|
||
find_package(Python REQUIRED COMPONENTS Interpreter Development.Module) | ||
find_package(pybind11 CONFIG REQUIRED) | ||
|
||
pybind11_add_module(ldpc MODULE ldpc.cpp) | ||
python_add_library(ldpc MODULE ldpc.cpp WITH_SOABI) | ||
target_compile_definitions(ldpc PRIVATE VERSION_INFO=${PROJECT_VERSION}) | ||
target_link_libraries(ldpc PUBLIC aff3ct-static-lib) | ||
target_link_libraries(ldpc PRIVATE aff3ct-static-lib pybind11::headers) | ||
|
||
pybind11_add_module(polar MODULE polar.cpp) | ||
python_add_library(polar MODULE polar.cpp WITH_SOABI) | ||
target_compile_definitions(polar PRIVATE VERSION_INFO=${PROJECT_VERSION}) | ||
target_link_libraries(polar PUBLIC aff3ct-static-lib) | ||
target_link_libraries(polar PRIVATE aff3ct-static-lib pybind11::headers) | ||
|
||
pybind11_add_module(rsc MODULE rsc.cpp) | ||
python_add_library(rsc MODULE rsc.cpp WITH_SOABI) | ||
target_compile_definitions(rsc PRIVATE VERSION_INFO=${PROJECT_VERSION}) | ||
target_link_libraries(rsc PUBLIC aff3ct-static-lib) | ||
target_link_libraries(rsc PRIVATE aff3ct-static-lib pybind11::headers) | ||
|
||
pybind11_add_module(turbo MODULE turbo.cpp) | ||
python_add_library(turbo MODULE turbo.cpp WITH_SOABI) | ||
target_compile_definitions(turbo PRIVATE VERSION_INFO=${PROJECT_VERSION}) | ||
target_link_libraries(turbo PUBLIC aff3ct-static-lib) | ||
target_link_libraries(turbo PRIVATE aff3ct-static-lib pybind11::headers) | ||
|
||
pybind11_add_module(rs MODULE rs.cpp) | ||
python_add_library(rs MODULE rs.cpp WITH_SOABI) | ||
target_compile_definitions(rs PRIVATE VERSION_INFO=${PROJECT_VERSION}) | ||
target_link_libraries(rs PUBLIC aff3ct-static-lib) | ||
target_link_libraries(rs PRIVATE aff3ct-static-lib pybind11::headers) | ||
|
||
pybind11_add_module(bch MODULE bch.cpp) | ||
python_add_library(bch MODULE bch.cpp WITH_SOABI) | ||
target_compile_definitions(bch PRIVATE VERSION_INFO=${PROJECT_VERSION}) | ||
target_link_libraries(bch PUBLIC aff3ct-static-lib) | ||
target_link_libraries(bch PRIVATE aff3ct-static-lib pybind11::headers) |
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
Oops, something went wrong.