this repo has no description
1project(SpeechSynthesis)
2
3remove_sdk_framework(SpeechSynthesis)
4
5set(DYLIB_COMPAT_VERSION "1.0.0")
6set(DYLIB_CURRENT_VERSION "1.0.0")
7
8set(FRAMEWORK_VERSION "A")
9
10generate_sdk_framework(SpeechSynthesis
11 VERSION ${FRAMEWORK_VERSION}
12 HEADER "include/SpeechSynthesis"
13)
14
15add_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)