Displaying 2 results from an estimated 2 matches for "use_system_opus".
2019 May 09
0
CMake improvement suggestion
...ojects to be modular (be agnostic to whether or not the
dependencies are nested or not), the in-tree build process needs to
generate the same targets as finding the dependencies out of tree. For
example:
cmake_minimum_required(VERSION 3.14)
project(opus-example VERSION 0.0.1 LANGUAGES CXX)
option(USE_SYSTEM_OPUS "Use the system opus" OFF)
if (USE_SYSTEM_OPUS)
find_package(Opus REQUIRED)
else ()
add_subdirectory(${PROJECT_SOURCE_DIR}/dependencies/opus)
endif()
add_executable(example ${PROJECT_SOURCE_DIR}/src/example.cpp)
target_link_libraries(example PRIVATE Opus::opus)
Using find_packa...
2012 Oct 19
2
bug reports and missing license headers
Hi all!
What is the right way to report bugs in libopus? I couldn't find any
publicly available bugtracker.
Anyway, the problem I need to report is that some source files in
libopus are missing copyright headers. This breaks license check
script that we use in chromium to validate licenses for third-party
dependencies. Specifically the following files don't have copyright
header: