Skip to content

Commit 440de78

Browse files
committed
Update lakefile [ci skip]
1 parent 8d3c696 commit 440de78

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lakefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
PROJECT = 'lcurl'
1+
PROJECT = 'cURL'
22

33
INITLAKEFILE()
44

55
DEFINES = L{DEFINES,
66
IF(WINDOWS, 'DLL_EXPORT', '');
77
}
88

9-
cURL = c.shared{PROJECT,
9+
cURL = c.shared{'lcurl',
1010
base = 'src',
1111
src = '*.c',
1212
needs = {LUA_NEED, 'libcurl', IF(WINDOWS, 'winsock2', 'sockets')},
@@ -19,9 +19,9 @@ target('build', cURL)
1919

2020
install = target('install', {
2121
file.group{odir=LIBDIR; src = cURL };
22-
file.group{odir=J(LIBDIR, PROJECT); src = J("src", "lua") };
23-
file.group{odir=J(ROOT, 'examples'); src = 'examples'; recurse = true };
24-
file.group{odir=TESTDIR; src = 'test'; recurse = true };
22+
file.group{odir=J(LIBDIR, PROJECT); src = J("src", "lua") ; recurse = true };
23+
file.group{odir=J(ROOT, 'examples'); src = 'examples'; recurse = true };
24+
file.group{odir=TESTDIR; src = 'test'; recurse = true };
2525
})
2626

2727
target('test', install, function()

0 commit comments

Comments
 (0)