-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extended SDK generation to flutter template files
- Loading branch information
1 parent
616fa61
commit 0aeff00
Showing
3 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
if(JVX_RELEASE_SDK) | ||
install(DIRECTORY ${JVX_BASE_ROOT}/flutter/project_templates DESTINATION ${INSTALL_PATH_RELEASE_ROOT}/flutter) | ||
endif() | ||
|
||
|
5 changes: 4 additions & 1 deletion
5
...ates/linux/common/ayf-sdk-local-headers.h → ..._templates/common/ayf-sdk-local-headers.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
#ifndef __AYF_SDK_LOCAL_HEADERS_H__ | ||
#define __AYF_SDK_LOCAL_HEADERS_H__ | ||
|
||
#define STRINGIZE_(a) #a | ||
#define STRINGIZE(a) STRINGIZE_(a) | ||
|
||
#define JVX_COMPONENT_ACCESS_CALLING_CONVENTION | ||
#include "jvx_sdk.h" | ||
#include "jvx.h" | ||
#include "flutter_native_host_config.h" | ||
#include "ayfstarter-native-config.h" | ||
#include STRINGIZE(AYF_PROJECT.h) | ||
|
||
#endif |