Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Boost regex and random for Windows build #721

Merged
merged 2 commits into from
May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# ChangeLog
# v3.x.x
- Windows Boost build add regex and random
- VM:
- set BUILD_CIL=ON
- updated versions:
Expand Down
2 changes: 1 addition & 1 deletion SuperBuild/External_Boost_buildboost.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if(WIN32)
# TODO: would be better to use a variable but for some reason KT cannot pass the variable to the execute_process
# without strange error messages of b2

execute_process(COMMAND ./b2 --with-system --with-filesystem --with-thread --with-program_options --with-chrono --with-date_time --with-atomic --with-timer --with-test install --prefix=${BOOST_INSTALL_DIR}
execute_process(COMMAND ./b2 --with-system --with-filesystem --with-thread --with-program_options --with-chrono --with-date_time --with-atomic --with-timer --with-test --with-random --with-regex install --prefix=${BOOST_INSTALL_DIR}
WORKING_DIRECTORY ${BUILD_DIR} RESULT_VARIABLE build_result)

else(WIN32)
Expand Down