File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ if(DEVELOPMENT_CODE)
3737else ()
3838 add_dependencies (cavity pedra)
3939endif ()
40+ if (BUILD_CUSTOM_BOOST)
41+ add_dependencies (cavity custom_boost)
42+ endif ()
4043install (TARGETS cavity ARCHIVE DESTINATION lib)
4144
4245# Sets install directory for all the headers in the list
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ write_to_cloc_list("${to_count}")
2626add_library (green STATIC ${sources_list} )
2727set (libs_to_merge green ${libs_to_merge} PARENT_SCOPE)
2828add_dependencies (green metal libtaylor)
29+ if (BUILD_CUSTOM_BOOST)
30+ add_dependencies (green custom_boost)
31+ endif ()
2932install (TARGETS green ARCHIVE DESTINATION lib)
3033
3134# Sets install directory for all the headers in the list
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ write_to_cloc_list("${to_count}")
2424add_library (interface STATIC ${sources_list} )
2525set (libs_to_merge interface ${libs_to_merge} PARENT_SCOPE)
2626add_dependencies (interface utils solver)
27+ if (BUILD_CUSTOM_BOOST)
28+ add_dependencies (interface custom_boost)
29+ endif ()
2730install (TARGETS interface ARCHIVE DESTINATION lib)
2831
2932# Sets install directory for all the headers in the list
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ write_to_cloc_list("${to_count}")
2626add_library (utils STATIC ${sources_list} )
2727set (libs_to_merge utils ${libs_to_merge} PARENT_SCOPE)
2828add_dependencies (utils libgetkw)
29+ if (BUILD_CUSTOM_BOOST)
30+ add_dependencies (utils custom_boost)
31+ endif ()
2932install (TARGETS utils ARCHIVE DESTINATION lib)
3033
3134# Sets install directory for all the headers in the list
You can’t perform that action at this time.
0 commit comments