Compare commits

...

2 Commits

Author SHA1 Message Date
kayomn 94b573b2e5 Disable automatic detection of submodule dependencies in VS code 2022-09-01 18:52:26 +01:00
kayomn a71859433f Fix compiling on Fedora 2022-09-01 18:51:45 +01:00
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
{
"editor.rulers": [100],
"git.detectSubmodules": false,
"files.exclude":{
"**/.git": true,

View File

@ -12,7 +12,7 @@ pub fn build(builder: *std.build.Builder) void {
ona_exe.setBuildMode(mode);
ona_exe.install();
ona_exe.addIncludeDir("./ext");
ona_exe.linkSystemLibrary("sdl2");
ona_exe.linkSystemLibrary("SDL2");
// Lua dependency.
ona_exe.linkLibrary(link_lua: {