Skip to content

Instantly share code, notes, and snippets.

View adrianjmejias's full-sized avatar
🐼
Panda

Adrian Mejias adrianjmejias

🐼
Panda
  • London
View GitHub Profile
@adrianjmejias
adrianjmejias / premake5.lua
Created July 31, 2019 17:03
c++ library development template
-- premake5.lua
-- https://git-scm.com/book/en/v2/Git-Tools-Submodules
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
libName = "CachapaDS"
libType = "StaticLib" -- uncomment for .lib
-- libType = "SharedLib" -- uncomment for dll
appName = "Playground"