|
|
@@ -1,12 +1,14 @@
|
|
|
local prelude = require "prelude"
|
|
|
local portaudio = require "prelude.libraries.portaudio"
|
|
|
local physfs = require "prelude.libraries.physfs"
|
|
|
+local glm = require "prelude.libraries.glm"
|
|
|
|
|
|
|
|
|
workspace "Your Project here"
|
|
|
configurations {"Debug", "DebugOpt", "Release"}
|
|
|
location "build"
|
|
|
|
|
|
+ glm:use "None"
|
|
|
portaudio:use "SharedLib"
|
|
|
physfs:use "SharedLib"
|
|
|
|
|
|
@@ -26,7 +28,7 @@ workspace "Your Project here"
|
|
|
|
|
|
-- TODO : issues at link on VS2015. Does it happen at home?
|
|
|
-- Need to manually check "Link Library Dependencies" every time.
|
|
|
- prelude.link_against_modules {portaudio, physfs}
|
|
|
+ prelude.link_against_modules {portaudio, physfs, glm}
|
|
|
|
|
|
prelude.base_project_settings()
|
|
|
|