this repo has no description
1project(VideoDecodeAcceleration)
2
3remove_sdk_framework(VideoDecodeAcceleration)
4
5set(DYLIB_COMPAT_VERSION "1.0.0")
6set(DYLIB_CURRENT_VERSION "1.0.0")
7
8set(FRAMEWORK_VERSION "A")
9
10generate_sdk_framework(VideoDecodeAcceleration
11 VERSION ${FRAMEWORK_VERSION}
12 HEADER "include/VideoDecodeAcceleration"
13)
14
15add_framework(VideoDecodeAcceleration
16 FAT
17 CURRENT_VERSION
18 VERSION ${FRAMEWORK_VERSION}
19
20 SOURCES
21 src/VideoDecodeAcceleration.c
22
23 DEPENDENCIES
24 system
25)