- In its current state, it produces a valid, launchable Mac application package, though one that's not redistributable (relies on system-installed libraries) - Partial support is already in-place for a Windows build
7 lines
138 B
Python
7 lines
138 B
Python
|
|
import os.path as path
|
|
|
|
Import("env install_dir")
|
|
|
|
env.Install(path.join(install_dir, "docs"), [Dir('editor'), Dir('game'), Dir('img')])
|