Skip to content

Instantly share code, notes, and snippets.

@prikansaritual
Created February 13, 2017 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prikansaritual/6f416076febca182376cffe796cf93ee to your computer and use it in GitHub Desktop.
Save prikansaritual/6f416076febca182376cffe796cf93ee to your computer and use it in GitHub Desktop.
top-level solution
-- the script containing our util functions
dofile("../../buildutils.lua");
soln ={}
initSoln(soln, soln_path, "windows")
addCompToSoln(mod, mod_path)
--anything else you want to add from this file
appendToTable(mod.includepaths, includedirset)
appendToTable(mod.linklibs, includelibset)
appendToTable(mod.libdirpaths, includelibdirset)
project "soln"
language "C"
defines "BLAHBLAHBLAH"
kind "SharedLib"
files (mood.srcfiles)
includedirs (mod.includepaths)
location "build"
links (mod.linklibs)
libdirs (mod.libdirpaths)
buildoptions (mod.buildoptions)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment