Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ cd native

pwd

# removes old builds, just to be safe
rm -rf obj

echo Building for 32 bits
haxelib run hxcpp Build.xml -DHXCPP_M32


# removes old builds, just to be safe
rm -rf obj

Expand Down
7 changes: 3 additions & 4 deletions include.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
</section>

<section if="linux">
<!-- Copies into both 32 and 64 bit folders because I haven't found a way to differentiate between them using conditionals in this file -->
<template path="native/lib/linux64/libsteam_api.so" rename="../../../linux64/cpp/bin/libsteam_api.so" />
<template path="native/lib/linux32/libsteam_api.so" rename="../../../linux/cpp/bin/libsteam_api.so" />
<template path="native/lib/linux32/libsteam_api.so" rename="libsteam_api.so" if="HXCPP_M32" />
<template path="native/lib/linux64/libsteam_api.so" rename="libsteam_api.so" if="HXCPP_M64" />
<template path="templates/steam_appid.txt" rename="steam_appid.txt" unless="final"/>
</section>

Expand All @@ -22,4 +21,4 @@
<template path="templates/steam_appid.txt" rename="bin/${APP_FILE}.app/Contents/MacOS/steam_appid.txt" unless="final"/>
</section>

</project>
</project>