forked from LinuxA11y/IAccessible2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix building of IDL and move it into a separate script. (LinuxA11y#10)
Fix the ordering of the idl so that symbols are defined when they need to be Fix the capitalization of AccessibleEventID.idl in the build script, which used AccessibleEventId.idl Create separate script for concatenating the idl which can be used separately. The resulting concatidl.sh script can be used on non-Windows desktops, without Doxygen or Cygwin Update docs Signed-off-by: Aaron Leventhal <[email protected]>
- Loading branch information
1 parent
e62544a
commit 59ef180
Showing
4 changed files
with
36 additions
and
24 deletions.
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
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,16 @@ | ||
#!/bin/sh | ||
# run concatidl.sh from the IA2 directory | ||
cd api | ||
|
||
# remove any previous autogenerated merged IDL file | ||
if [ -f ../ia2_api_all.idl ]; then | ||
rm ../ia2_api_all.idl | ||
fi | ||
|
||
# generate merged IDL file: | ||
# The order is important. | ||
# - AccessibleRelation must be before Accessible2 | ||
# - IA2TypeLibrary.idl must be at the end | ||
cat IA2CommonTypes.idl AccessibleRelation.idl AccessibleAction.idl AccessibleRole.idl AccessibleStates.idl Accessible2.idl Accessible2_2.idl Accessible2_3.idl AccessibleComponent.idl AccessibleValue.idl AccessibleText.idl AccessibleText2.idl AccessibleEditableText.idl AccessibleHyperlink.idl AccessibleHypertext.idl AccessibleHypertext2.idl AccessibleTable.idl AccessibleTable2.idl AccessibleTableCell.idl AccessibleImage.idl AccessibleEventID.idl AccessibleApplication.idl AccessibleDocument.idl IA2TypeLibrary.idl | sed -e 's/import "[A-Za-z0-9].*$//g' - | cat api_all_headers.idl - > ../ia2_api_all.idl | ||
|
||
cd .. |
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