Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
63 lines (55 sloc)
2.11 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2019 Befovy <befovy@gmail.com> | |
# | |
# This file is part of fijkPlayer. | |
# | |
# fijkPlayer is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU Lesser General Public | |
# License as published by the Free Software Foundation; either | |
# version 2.1 of the License, or (at your option) any later version. | |
# | |
# fijkPlayer is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
# Lesser General Public License for more details. | |
# | |
# You should have received a copy of the GNU Lesser General Public | |
# License along with ijkPlayer; if not, write to the Free Software | |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
# | |
cmake_minimum_required(VERSION 3.5) | |
if (NOT DEFINED FIJKROOT_PATH) | |
set(FIJKROOT_PATH ${CMAKE_CURRENT_LIST_DIR}/../) | |
endif () | |
if (IJK_DESKTOP_UNI) | |
add_subdirectory(portaudio) | |
add_subdirectory(ijkyuv) | |
target_compile_options(portaudio_static PRIVATE "-Wno-deprecated-declarations") | |
target_compile_options(portaudio PRIVATE "-Wno-deprecated-declarations") | |
endif () | |
add_subdirectory(ijksdl) | |
add_subdirectory(ijkplayer) | |
set(GIT_DESCRIBE "unknown, dose not found git") | |
execute_process( | |
COMMAND git describe --dirty | |
OUTPUT_VARIABLE GIT_DESCRIBE | |
OUTPUT_STRIP_TRAILING_WHITESPACE | |
# ERROR_QUIET | |
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} | |
) | |
configure_file(ijkplayer/ijkversion.h.in ${CMAKE_CURRENT_LIST_DIR}/ijkplayer/ijkversion.h @ONLY) | |
if (ANDROID) | |
add_subdirectory(ijksoundtouch) | |
add_subdirectory(ijkyuv) | |
add_subdirectory(ijkj4a) | |
# just a dummy android ndk prifiler | |
option(ANDROID_NDK_PROFILER OFF) | |
if (NDK_PROFILER) | |
# not implemented yet | |
message(FATAL_ERROR "not implemented yet, android-ndk-profiler") | |
add_subdirectory(../ijkprof/android-ndk-profiler/jni ijkprof) | |
else () | |
add_subdirectory(../ijkprof/android-ndk-profiler-dummy/jni ijkprof) | |
endif (NDK_PROFILER) | |
# add_dependencies(ijkplayer android-ndk-profiler) | |
endif () |