Coder Social home page Coder Social logo

Comments (3)

joeyparrish avatar joeyparrish commented on September 28, 2024

We haven't yet finished the cmake port and merged the cmake branch back into main.

What we are doing in the cmake branch for third-party dependencies is using add_subdirectory to add each one to our build. These are git submodules within our repo:

add_subdirectory(abseil-cpp EXCLUDE_FROM_ALL)

Would a similar strategy work for you to include Shaka Packager?

Please try out the cmake branch and its libpackager target as you integrate. The only option right now is LIBPACKAGER_SHARED, to control the generation of a shared vs static library. And please let us know what we can change to make life easier for you. Thanks!

# The only build option for Shaka Packager is whether to build a shared
# libpackager library. By default, don't.
option(LIBPACKAGER_SHARED "Build libpackager as a shared library" OFF)

if(LIBPACKAGER_SHARED)
add_library(libpackager SHARED ${libpackager_sources})
target_compile_definitions(libpackager PUBLIC SHAKA_IMPLEMENTATION)
else()
add_library(libpackager STATIC ${libpackager_sources})
endif()

from shaka-packager.

github-actions avatar github-actions commented on September 28, 2024

@felibol Does this answer all your questions? If so, would you please close the issue?

from shaka-packager.

github-actions avatar github-actions commented on September 28, 2024

Closing due to inactivity. If this is still an issue for you or if you have further questions, the OP can ask shaka-bot to reopen it by including @shaka-bot reopen in a comment.

from shaka-packager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.