forked from expressobits/steam-multiplayer-peer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSConstruct
54 lines (44 loc) · 1.83 KB
/
SConstruct
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!python
import os
# Gets the standard flags CC, CCX, etc.
env = SConscript("godot-cpp/SConstruct")
# Local dependency paths, adapt them to your setup
steam_lib_path = "steam-multiplayer-peer/sdk/redistributable_bin"
# Check our platform specifics
if env['platform'] in ('macos', 'osx'):
# Set the correct Steam library
steam_lib_path += "/osx"
steamworks_library = 'libsteam_api.dylib'
elif env['platform'] in ('linuxbsd', 'linux'):
# Set correct Steam library
steam_lib_path += "/linux64" if env['arch'] == 'x86_64' else "/linux32"
steamworks_library = 'libsteam_api.so'
elif env['platform'] == "windows":
# This makes sure to keep the session environment variables on windows,
# that way you can run scons in a vs 2017 prompt and it will find all the required tools
# env.Append(ENV=os.environ)
# Set correct Steam library
steam_lib_path += "/win64" if env['arch'] == 'x86_64' else ""
steamworks_library = 'steam_api64.dll' if env['arch'] == 'x86_64' else 'steam_api.dll'
# make sure our binding library is properly includes
env.Append(LIBPATH=[steam_lib_path])
env.Append(CPPPATH=['steam-multiplayer-peer/sdk/public'])
env.Append(LIBS=[
steamworks_library.replace(".dll", "")
])
# tweak this if you want to use different folders, or more folders, to store your source code in.
env.Append(CPPPATH=['steam-multiplayer-peer/'])
sources = Glob('steam-multiplayer-peer/*.cpp')
if env["platform"] == "macos":
library = env.SharedLibrary(
"bin/steam-multiplayer-peer.{}.{}.framework/steam-multiplayer-peer.{}.{}".format(
env["platform"], env["target"], env["platform"], env["target"]
),
source=sources,
)
else:
library = env.SharedLibrary(
"bin/steam-multiplayer-peer{}{}".format(env["suffix"], env["SHLIBSUFFIX"]),
source=sources,
)
Default(library)