Added GLFW
This commit is contained in:
parent
ce790b4d38
commit
8d633dac01
5 changed files with 19 additions and 7 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,3 +1,6 @@
|
||||||
[submodule "Dependencies/spdlog"]
|
[submodule "Dependencies/spdlog"]
|
||||||
path = Dependencies/spdlog
|
path = Dependencies/spdlog
|
||||||
url = https://github.com/gabime/spdlog
|
url = https://github.com/gabime/spdlog
|
||||||
|
[submodule "Dependencies/GLFW"]
|
||||||
|
path = Dependencies/GLFW
|
||||||
|
url = https://github.com/Light3039/glfw
|
||||||
|
|
|
@ -17,4 +17,7 @@ outputdir = "%{cfg.buildcfg}/%{cfg.system}/%{cfg.architecture}/%{prj.name}"
|
||||||
|
|
||||||
-- Projects --
|
-- Projects --
|
||||||
include "../Sandbox/"
|
include "../Sandbox/"
|
||||||
include "../Engine/"
|
include "../Engine/"
|
||||||
|
|
||||||
|
group "Dependencies"
|
||||||
|
include "../Dependencies/GLFW/"
|
1
Dependencies/GLFW
vendored
Submodule
1
Dependencies/GLFW
vendored
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 72229440a46f607a325fa430ef0c9c14c7ec1218
|
|
@ -1,10 +1,10 @@
|
||||||
project "Engine"
|
project "Engine"
|
||||||
|
|
||||||
-- Output Directories --
|
-- Output Directories --
|
||||||
location "../Engine/"
|
location "%{wks.location}/Engine/"
|
||||||
|
|
||||||
targetdir ("../bin/" .. outputdir)
|
targetdir ("%{wks.location}/bin/" .. outputdir)
|
||||||
objdir ("../bin-int/" .. outputdir)
|
objdir ("%{wks.location}/bin-int/" .. outputdir)
|
||||||
|
|
||||||
-- Compiler --
|
-- Compiler --
|
||||||
kind "StaticLib"
|
kind "StaticLib"
|
||||||
|
@ -27,6 +27,11 @@ project "Engine"
|
||||||
|
|
||||||
(dependenciesdir .. "spdlog/include/"),
|
(dependenciesdir .. "spdlog/include/"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
links
|
||||||
|
{
|
||||||
|
"GLFW",
|
||||||
|
}
|
||||||
|
|
||||||
--- Filters ---
|
--- Filters ---
|
||||||
-- windows
|
-- windows
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
project "Sandbox"
|
project "Sandbox"
|
||||||
|
|
||||||
-- Output Directories --
|
-- Output Directories --
|
||||||
location "../Sandbox/"
|
location "%{wks.location}/Sandbox/"
|
||||||
|
|
||||||
targetdir ("../bin/" .. outputdir)
|
targetdir ("%{wks.location}/bin/" .. outputdir)
|
||||||
objdir ("../bin-int/" .. outputdir)
|
objdir ("%{wks.location}/bin-int/" .. outputdir)
|
||||||
|
|
||||||
-- Compiler --
|
-- Compiler --
|
||||||
kind "ConsoleApp"
|
kind "ConsoleApp"
|
||||||
|
|
Loading…
Add table
Reference in a new issue