summaryrefslogtreecommitdiff
path: root/pkg/wince/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/wince/common.py')
-rw-r--r--pkg/wince/common.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/wince/common.py b/pkg/wince/common.py
new file mode 100644
index 00000000..e142c2b7
--- /dev/null
+++ b/pkg/wince/common.py
@@ -0,0 +1,9 @@
+
+# SDL library files that need to be installed:
+
+LIBRARIES = [ "SDL.dll", "SDL_mixer.dll", "libSDL_net-1-2-0.dll" ]
+
+def add_libraries(dir, files):
+ for lib in LIBRARIES:
+ files[dir + lib] = lib
+