CMakeLists.txt
 1  project(SpeechSynthesis)
 2  
 3  remove_sdk_framework(SpeechSynthesis)
 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(SpeechSynthesis
11      VERSION ${FRAMEWORK_VERSION}
12      HEADER "include/SpeechSynthesis"
13  )
14  
15  add_framework(SpeechSynthesis
16      FAT
17      CURRENT_VERSION
18      VERSION ${FRAMEWORK_VERSION}
19      PARENT ApplicationServices
20  
21      SOURCES
22          src/SpeechSynthesis.c
23  
24      DEPENDENCIES
25          system
26  )