-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
1,004 additions
and
114 deletions.
There are no files selected for viewing
Binary file removed
BIN
-43.7 MB
3rd/apache-log4cxx-0.10.0/projects/.vs/delayedloop/v15/Browse.VC.db
Binary file not shown.
Binary file removed
BIN
-836 KB
3rd/apache-log4cxx-0.10.0/projects/.vs/delayedloop/v15/Solution.VC.db
Binary file not shown.
Binary file removed
BIN
-22.9 MB
...apache-log4cxx-0.10.0/projects/.vs/delayedloop/v15/ipch/AutoPCH/74065238e48ba6b2/DSO.ipch
Binary file not shown.
Binary file removed
BIN
-19.3 MB
...log4cxx-0.10.0/projects/.vs/delayedloop/v15/ipch/AutoPCH/da400b0f5918ce79/APR_ESCAPE.ipch
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,66 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
project(ffmpeg_sdl_test LANGUAGES CXX) | ||
project(media_test LANGUAGES CXX) | ||
|
||
SET(PROJECT_ROOT_PATH "${CMAKE_SOURCE_DIR}/build-ffmpeg_sdl_test-Desktop_Qt_5_12_10_clang_64bit-Debug") | ||
MESSAGE( STATUS "this var key = ${PROJECT_ROOT_PATH}.") | ||
set(CMAKE_CXX_STANDARD 11) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
||
|
||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
|
||
set(CMAKE_AUTOUIC ON) | ||
set(CMAKE_AUTOMOC ON) | ||
set(CMAKE_AUTORCC ON) | ||
|
||
set(CMAKE_INCLUDE_DIRECTORIES_BEFORE ON) | ||
|
||
if (CMAKE_HOST_WIN32) | ||
set(WINDOWS 1) | ||
set(LIBSUFFIX .lib) | ||
set(LIBPREFIX ) | ||
set(LIBRARY_SEARCH_PATHS | ||
C:/msys64/usr/src/src/third_party/ffmpeg/x64 | ||
D:/workspace/leelen/source/freeswitch/x64/Debug | ||
C:/msys64/usr/src/src/third_party/sdl/x64 | ||
D:/workspace/opensource/SDL2/lib/x64 | ||
D:/workspace/mycode/media_test/3rd/apache-log4cxx-0.10.0/projects/x64/Debug | ||
src | ||
) | ||
include_directories(C:/msys64/usr/local/ffmpeg/include) | ||
include_directories(C:/msys64/usr/src/src/third_party/sdl/include) | ||
include_directories(src) | ||
include_directories(D:/workspace/mycode/media_test/3rd/apache-log4cxx-0.10.0/src/main/include) | ||
elseif(CMAKE_HOST_APPLE) | ||
set(MACOS 1) | ||
set(LIBSUFFIX .dylib) | ||
set(LIBPREFIX lib) | ||
set(LIBRARY_SEARCH_PATHS | ||
../3rd/apr-1.7.0/.libs/ | ||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/ | ||
/usr/local/lib/ | ||
) | ||
include_directories(/usr/local/include) | ||
elseif(CMAKE_HOST_UNIX) | ||
set(LINUX 1) | ||
set(LIBSUFFIX .so) | ||
set(LIBPREFIX lib) | ||
endif() | ||
|
||
if(WINDOWS) | ||
set(Qt5_DIR "C:/Qt/Qt5.14.0/5.14.0/msvc2017_64/lib/cmake/Qt5") | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I C:/msys64/usr/local/ffmpeg/include -I D:/workspace/mycode/media_test/3rd/apache-log4cxx-0.10.0/src/main/include -IC:/msys64/usr/src/src/third_party/sdl/include -IC:/msys64/usr/src/ffmpeg-4.3.2") | ||
elseif(LINUX) | ||
|
||
elseif(MACOS) | ||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O0 ") | ||
set(Qt5_DIR "/Users/yaoping.zheng/Qt5.12.10/5.12.10/clang_64/lib/cmake/Qt5") | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -v -stdlib=libc++ -I/usr/local/include -L/usr/local/lib/ -I/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -L/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/lib/") | ||
endif() | ||
|
||
|
||
#SET(PROJECT_ROOT_PATH "${CMAKE_SOURCE_DIR}/build-ffmpeg_sdl_test-Desktop_Qt_5_12_10_clang_64bit-Debug") | ||
#MESSAGE( STATUS "this var key = ${PROJECT_ROOT_PATH}.") | ||
|
||
add_subdirectory(src) | ||
add_subdirectory(test) | ||
#add_subdirectory(test) | ||
|
Oops, something went wrong.