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

Build all contribs using our own CMake files #9226

Closed
45 of 47 tasks
abyss7 opened this issue Feb 19, 2020 · 2 comments · Fixed by #33690
Closed
45 of 47 tasks

Build all contribs using our own CMake files #9226

abyss7 opened this issue Feb 19, 2020 · 2 comments · Fixed by #33690
Assignees
Labels

Comments

@abyss7
Copy link
Contributor

abyss7 commented Feb 19, 2020

All contribs should be based on common template:

option (ENABLE_XXX)
if (ENABLE_XXX)
    option (USE_INTERNAL_XXX)
    if (USE_INTERNAL_XXX)
        …
    else ()
        add_library (xxx UNKNOWN IMPORT)
        find_library(…) # use library names
        find_path(…) # find include dirs
        set_property(TARGET xxx PROPERTY IMPORTED_LOCATION …)

        # check that external library compiles
    endif ()
    target_compile_definitions (xxx PUBLIC USE_XXX=1)
else ()
    add_library (xxx INTERFACE)
    target_compile_definitions (xxx INTERFACE USE_XXX=0)
endif ()

It allows to always depend on required libraries and give the explicit and determenistic control for their enabling to user. It also removes unnecessary configuration, install and export steps that makes our own CMake files more complicated.

List of contribs to fix:

  • abseil-cpp
  • arrow
  • avro
  • aws*
  • base64
  • boost
  • brotli
  • capnproto
  • cassandra
  • cctz
  • cppkafka
  • curl
  • double-conversion
  • fastops
  • fastfloat
  • flatbuffers
  • googletest
  • grpc
  • gcem
  • h3
  • hyperscan
  • icu
  • jemalloc (special case)
  • libgsasl
  • libhdfs3
  • librdkafka
  • libunwind (special case)
  • libxml2
  • llvm
  • lz4
  • mariadb-connector-c
  • openssl
  • orc
  • poco
  • protobuf
  • rapidjson
  • re2
  • ryu
  • sentry-native
  • simdjson
  • snappy
  • sparsehash-c11
  • thrift
  • unixodbc
  • xz
  • zlib-ng
  • zstd

And maybe some others that are not yet in contrib folder

@abyss7 abyss7 added the build label Feb 19, 2020
@abyss7 abyss7 self-assigned this Feb 19, 2020
@alexey-milovidov
Copy link
Member

I have checked the marks for contribs with our own CMake.

@alexey-milovidov
Copy link
Member

Continued here: #35630

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants