Skip to content

Commit

Permalink
feat: add cmake build conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
nmreadelf committed Feb 3, 2024
1 parent 9dd669f commit adc0a1f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions contrib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ add_contrib (murmurhash)
add_contrib (replxx-cmake replxx)
add_contrib (unixodbc-cmake unixodbc)
add_contrib (nanodbc-cmake nanodbc)
add_contrib (capnproto-cmake capnproto)
if (ENABLE_PB)
add_contrib (capnproto-cmake capnproto)
endif()
add_contrib (yaml-cpp-cmake yaml-cpp)
add_contrib (re2-cmake re2)
add_contrib (xz-cmake xz)
Expand Down Expand Up @@ -112,9 +114,11 @@ if (ENABLE_TESTS)
add_contrib (googletest-cmake googletest)
endif()

add_contrib (llvm-project-cmake llvm-project)
add_contrib (libfuzzer-cmake llvm-project)
add_contrib (gwpasan-cmake llvm-project)
if (ENABLE_LLVM)
add_contrib (llvm-project-cmake llvm-project)
add_contrib (libfuzzer-cmake llvm-project)
add_contrib (gwpasan-cmake llvm-project)
endif()
add_contrib (libxml2-cmake libxml2)

add_contrib (aws-cmake
Expand Down

0 comments on commit adc0a1f

Please sign in to comment.