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