-
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.
- Loading branch information
1 parent
7eece6f
commit 5674852
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<xml> | ||
<!-- TO EDIT THE NAME OF THE NDLL EDIT THIS --> | ||
<set name="NDLL_NAME" value="memory"/> | ||
|
||
<include name="${HXCPP}/build-tool/BuildCommon.xml"/> | ||
|
||
<files id="common"> | ||
<compilerflag value="-Iinclude"/> | ||
|
||
<file name="common/ExternalInterface.cpp"/> | ||
</files> | ||
|
||
<set name="SLIBEXT" value=".lib" if="windows"/> | ||
<set name="SLIBEXT" value=".a" unless="windows"/> | ||
<set name="SLIBEXT" value=".so" if="webos"/> | ||
|
||
<set name="DEBUGEXTRA" value="-debug" if="fulldebug" /> | ||
|
||
<!-- prefix = ${LIBPREFIX} --> | ||
<!-- suffix = ${MSVC_LIB_VERSION}${DEBUGEXTRA}${LIBEXTRA} --> | ||
<target id="NDLL" output="memory" tool="linker" toolid="${STD_MODULE_LINK}"> | ||
<outdir name="../ndll/${BINDIR}"/> | ||
<ext value=".ndll" if="windows || mac || linux"/> | ||
<files id="common"/> | ||
</target> | ||
|
||
<target id="default"> | ||
<target id="NDLL"/> | ||
</target> | ||
</xml> |