6ad8a8b6cc
- Move source code from `trunk` into root directory for each program. - Update build files and ASM include paths. Add SPDX license header where appropriate. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden. (Work towards #75, point 3) Reviewed-on: #422 Reviewed-by: Mikhail Frolov <mixa.frolov2003@gmail.com> Reviewed-by: Burer <burer@noreply.localhost> Co-authored-by: Andrew <dent.ace@gmail.com> Co-committed-by: Andrew <dent.ace@gmail.com>
7 lines
261 B
Lua
7 lines
261 B
Lua
SOUND_CWD = tup.getcwd() .. "/develop/sdk/sound"
|
|
SOUND_VAR = tup.getvariantdir() .. "/develop/sdk/sound"
|
|
|
|
INCLUDES = INCLUDES .. " -I" .. SOUND_CWD .. "/include"
|
|
table.insert(LIBDEPS, SOUND_VAR .. "/src/sound.lib")
|
|
LIBS = SOUND_VAR .. "/src/sound.lib " .. LIBS
|