Merge pull request #62 from MissLavender-LQ/linux-dev

Linux dev
This commit is contained in:
Antoine Pilote
2023-09-28 01:04:49 -04:00
committed by GitHub
3 changed files with 5 additions and 3 deletions

View File

@@ -161,12 +161,14 @@ int ApplicationMain(int argc, char* argv[])
#ifdef NK_DIST
#ifdef NK_WIN
#include "windows.h"
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, LPSTR cdmline, int cmdshow)
{
return ApplicationMain(__argc, __argv);
}
#endif
#else

3
build.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
premake5 gmake;
make config=release all;

View File

@@ -209,9 +209,6 @@ project "NuakeRuntime"
"WIN32_LEAN_AND_MEAN"
}
entrypoint "WinMainCRTStartup"
buildoptions { "-mwindows"}
filter "configurations:Dist"
kind "WindowedApp"
runtime "Release"