We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Don't depend on system provided boost. Add QUICK_FTXUI_BOOST option which is ON by default. Use fetchcontent to fetch boost from GitHub when it is ON.
QUICK_FTXUI_BOOST
ON
option(QUICK_FTXUI_BOOST "Enable boost fetching from GitHub" ON) if(QUICK_FTXUI_BOOST) set(BOOST_ENABLE_CMAKE ON) include(FetchContent) FetchContent_Declare( Boost GIT_REPOSITORY https://github.com/boostorg/boost.git GIT_TAG boost-1.81.0 ) FetchContent_MakeAvailable(Boost) else() find_package(Boost 1.81.0 REQUIRED COMPONENTS spirit) endif()
The text was updated successfully, but these errors were encountered:
I tried to add the following to CMakeLists.txt, but now it takes a lot of time to build on ubuntu. Please review : https://github.com/PritK99/quick-ftxui/blob/prit_dev/CMakeLists.txt
Sorry, something went wrong.
No branches or pull requests
Don't depend on system provided boost.
Add
QUICK_FTXUI_BOOST
option which isON
by default.Use fetchcontent to fetch boost from GitHub when it is ON.
The text was updated successfully, but these errors were encountered: