1
0

Creating a basic window

added GLFW to create a window without an API_CONTEXT
This commit is contained in:
2023-05-10 16:02:18 +02:00
parent d66ed2ad23
commit 9b923834e1
13 changed files with 6722 additions and 0 deletions

23
premake5.lua Normal file
View File

@@ -0,0 +1,23 @@
workspace "LearnDirectX"
configurations { "Debug", "Release" }
project "LearnDirectX"
kind "ConsoleApp"
language "C++"
targetdir "bin/%{cfg.buildcfg}"
architecture "x64"
links {"glfw3"}
libdirs{ "vendor/GLFW/lib"}
includedirs {"vendor/GLFW/include"}
files { "src/**.h", "src/**.cpp"}
filter "configurations:Debug"
defines {"DEBUG"}
symbols "On"
filter "configurations:Release"
defines {"NDEBUG"}
optimize "On"