You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
369 B
10 lines
369 B
#!/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
|