summaryrefslogtreecommitdiff
path: root/pkg/wince/heretic-cab.cfg
blob: ead2081fc97bbf0dade48cd4e7642769f61a31f7 (plain)
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
from common import *

app_name = "Chocolate Heretic"
provider = "Simon Howard"
arch = "strongarm"

# Install files:

d = "$(PROGRAMS_GAMES)/Chocolate Heretic/"
s = "$(START_GAMES)/"
src = "../../src/"

files = {
    d+"chocolate-heretic.exe":       src+"chocolate-heretic.exe",
    d+"chocolate-heretic-setup.exe": src+"chocolate-setup.exe",
}

add_libraries(d, files)

# Start menu links:

links = {
    s+"Chocolate Heretic.lnk":       d+"chocolate-heretic.exe",
    s+"Chocolate Heretic Setup.lnk": d+"chocolate-heretic-setup.exe"
}