diff options
author | Alex Chronopoulos <[email protected]> | 2018-02-19 17:50:15 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-02-19 17:50:15 +0200 |
commit | 84e9568141447d13a3f9e03fcff29c2ab6befce1 (patch) | |
tree | 1df0399b2aa8f503c608dd204c34dae253c93ab0 /CMakeLists.txt | |
parent | 1d53c3a3779cbeb860b16aa38cc7f51e196b9745 (diff) | |
download | cubeb-84e9568141447d13a3f9e03fcff29c2ab6befce1.tar.gz cubeb-84e9568141447d13a3f9e03fcff29c2ab6befce1.zip |
opensl es: remove methods relying on use of dlopen. (#412)
opensl es: add new jni files.
apply review commnets
apply jchen comments
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fac1b8..850081c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -181,7 +181,8 @@ endif() check_include_files(SLES/OpenSLES.h USE_OPENSL) if(USE_OPENSL) target_sources(cubeb PRIVATE - src/cubeb_opensl.c) + src/cubeb_opensl.c + src/cubeb-jni.cpp) target_compile_definitions(cubeb PRIVATE USE_OPENSL) target_link_libraries(cubeb PRIVATE OpenSLES) endif() |