10 lines
369 B
Bash
Executable File
10 lines
369 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Generate the CHRE-side header file
|
|
flatc --cpp -o ../include/chre/platform/shared/generated/ --scoped-enums \
|
|
--cpp-ptr-type chre::UniquePtr host_messages.fbs
|
|
|
|
# Generate the AP-side header file with some extra goodies
|
|
flatc --cpp -o ../../../host/common/include/chre_host/generated/ --scoped-enums \
|
|
--gen-mutable --gen-object-api host_messages.fbs
|