-
Notifications
You must be signed in to change notification settings - Fork 44
/
include.xml
25 lines (20 loc) · 1.12 KB
/
include.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<project>
<ndll name="steamwrap" />
<classpath name="steamwrap" />
<section if="windows">
<template path="native/lib/win32/steam_api.dll" rename="steam_api.dll"/>
<template path="native/lib/win64/steam_api64.dll" rename="steam_api64.dll"/>
<template path="templates/steam_appid.txt" rename="steam_appid.txt" unless="final"/>
</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="templates/steam_appid.txt" rename="steam_appid.txt" unless="final"/>
</section>
<section if="mac">
<template path="native/lib/osx64/libsteam_api.dylib" rename="bin/${APP_FILE}.app/Contents/MacOS/libsteam_api.dylib" />
<template path="templates/steam_appid.txt" rename="bin/${APP_FILE}.app/Contents/MacOS/steam_appid.txt" unless="final"/>
</section>
</project>