Skip to content

Commit

Permalink
conanfile.py: Allow codesign option to be empty when building (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwatson0 committed Oct 25, 2024
1 parent 7e1ba64 commit 9906555
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class ConanSlmPackage(ConanFile):

# use an option to request codesigning of the output executable
# but allow building with codesigned or not
options = {"codesign": [True, False, None, "ANY"]}
default_build_options = {"slm/*:codesign": "ANY"}
options = {"codesign": [True, False, None]}
default_build_options = {"slm/*:codesign": None}

# hide all dependencies from consumers
# https://blog.conan.io/2024/07/09/Introducing-vendoring-packages.html
Expand Down

0 comments on commit 9906555

Please sign in to comment.