Premake generates Visual Studio solution in directory
vs2022 from premake5.lua file. Generated solution files are stored in the repository for convenience.When to run premake #
Premake re-generates Visual Studio project files from
premake5.*.lua files.You only need to do that if you add or remove source files.
To re-generate:
- install bun
- make changes to
premake5.*.luafiles, most likelypremake5.files.lua - run
bun .\cmd\premake.ts
Relevant files:
PS C:\Users\kjk\src\sumatrapdf> ls *.lua
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 4/24/2020 12:20 AM 22947 premake5.files.lua
-a---- 5/4/2020 7:51 PM 23565 premake5.lua
Customizing build #
Sometimes we want to customize the build with
#ifdef. We could do it by adding additional configurations, but that can spiral out of control quickly.Instead we have
src\utils\BuildConfig.h file. It’s empty by default but you can change it to add your #define customization.Build variants #
We have
Debug, Release and ReleaseAnalyze configurations. ReleaseAnalyze runs code analysis.We have platforms:
Win32: 32-bit buildx64: 64-bit buildx64_asan: 64-build with additional runtime Address Sanitizers checks. Only 64-bit build for simplicity