Willy Tu | 6c71b0f | 2021-10-10 13:34:41 -0700 | [diff] [blame] | 1 | bifurcation_inc = include_directories('.') |
| 2 | |
Patrick Williams | 4d6a7b3 | 2025-02-01 08:38:43 -0500 | [diff] [blame] | 3 | bifurcation_deps = [stdplus] |
Willy Tu | 6c71b0f | 2021-10-10 13:34:41 -0700 | [diff] [blame] | 4 | |
| 5 | bifurcation_lib = static_library( |
Patrick Williams | 4d6a7b3 | 2025-02-01 08:38:43 -0500 | [diff] [blame] | 6 | 'bifurcation', |
| 7 | 'bifurcation_static.cpp', |
| 8 | conf_h, |
| 9 | dependencies: bifurcation_deps, |
| 10 | include_directories: [bifurcation_inc, root_inc], |
| 11 | install: false, |
Willy Tu | 6c71b0f | 2021-10-10 13:34:41 -0700 | [diff] [blame] | 12 | ) |
| 13 | |
| 14 | bifurcation_dep = declare_dependency( |
Patrick Williams | 4d6a7b3 | 2025-02-01 08:38:43 -0500 | [diff] [blame] | 15 | dependencies: bifurcation_deps, |
| 16 | include_directories: bifurcation_inc, |
| 17 | link_with: bifurcation_lib, |
Willy Tu | 6c71b0f | 2021-10-10 13:34:41 -0700 | [diff] [blame] | 18 | ) |