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

Remove boost #13

Merged
merged 1 commit into from
Dec 18, 2024
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
3 changes: 0 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,9 @@ target_compile_features(fractal-generator_lib PUBLIC cxx_std_23)

find_package(fmt REQUIRED)
find_package(argparse REQUIRED)
find_package(Boost REQUIRED)
find_package(SFML REQUIRED graphics CONFIG)
target_link_libraries(fractal-generator_lib PRIVATE fmt::fmt)
target_link_libraries(fractal-generator_lib PRIVATE argparse::argparse)
target_link_libraries(fractal-generator_lib PRIVATE boost::boost)
target_link_libraries(fractal-generator_lib PRIVATE sfml-graphics)

# ---- Declare executable ----
Expand All @@ -81,7 +79,6 @@ target_link_libraries(fractal-generator_exe PRIVATE fmt::fmt)
target_link_libraries(fractal-generator_exe PRIVATE fractal-generator_lib)
target_link_libraries(fractal-generator_exe PRIVATE argparse::argparse)
target_link_libraries(fractal-generator_exe PRIVATE sfml-graphics)
target_link_libraries(fractal-generator_exe PRIVATE boost::boost)

# ---- Install rules ----

Expand Down
4 changes: 0 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ def requirements(self):
self.requires("fmt/11.0.2")
self.requires("sfml/2.6.1")
self.requires("argparse/3.1")
self.requires("boost/1.86.0")

def configure(self):
self.options["boost"].without_test=True

def build_requirements(self):
self.test_requires("catch2/3.7.0")
Expand Down