forked from TheCherno/Hazel
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Community maintenance (TheCherno#320)
See PR for details
- Loading branch information
1 parent
3177aca
commit 0090b94
Showing
34 changed files
with
502 additions
and
577 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Hazel Community Support (Discord) | ||
url: https://thecherno.com/discord | ||
about: Please ask Hazel related questions in the game-engine-series thread. |
2 changes: 1 addition & 1 deletion
2
...b/ISSUE_TEMPLATE/issue--blank-template.md → ..._TEMPLATE/other-issues--blank-template.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[submodule "Hazel/vendor/spdlog"] | ||
path = Hazel/vendor/spdlog | ||
url = https://github.com/gabime/spdlog | ||
url = ../../gabime/spdlog.git | ||
branch = v1.x | ||
[submodule "Hazel/vendor/GLFW"] | ||
path = Hazel/vendor/GLFW | ||
url = https://github.com/TheCherno/glfw | ||
url = ../../TheCherno/glfw.git | ||
branch = master | ||
[submodule "Hazel/vendor/imgui"] | ||
path = Hazel/vendor/imgui | ||
url = https://github.com/TheCherno/imgui | ||
url = ../../TheCherno/imgui.git | ||
branch = docking | ||
[submodule "Hazel/vendor/glm"] | ||
path = Hazel/vendor/glm | ||
url = https://github.com/g-truc/glm | ||
url = ../../g-truc/glm.git | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
project "Hazel" | ||
kind "StaticLib" | ||
language "C++" | ||
cppdialect "C++17" | ||
staticruntime "on" | ||
|
||
targetdir ("%{wks.location}/bin/" .. outputdir .. "/%{prj.name}") | ||
objdir ("%{wks.location}/bin-int/" .. outputdir .. "/%{prj.name}") | ||
|
||
pchheader "hzpch.h" | ||
pchsource "src/hzpch.cpp" | ||
|
||
files | ||
{ | ||
"src/**.h", | ||
"src/**.cpp", | ||
"vendor/stb_image/**.h", | ||
"vendor/stb_image/**.cpp", | ||
"vendor/glm/glm/**.hpp", | ||
"vendor/glm/glm/**.inl", | ||
} | ||
|
||
defines | ||
{ | ||
"_CRT_SECURE_NO_WARNINGS", | ||
"GLFW_INCLUDE_NONE" | ||
} | ||
|
||
includedirs | ||
{ | ||
"src", | ||
"vendor/spdlog/include", | ||
"%{IncludeDir.GLFW}", | ||
"%{IncludeDir.Glad}", | ||
"%{IncludeDir.ImGui}", | ||
"%{IncludeDir.glm}", | ||
"%{IncludeDir.stb_image}", | ||
"%{IncludeDir.entt}" | ||
} | ||
|
||
links | ||
{ | ||
"GLFW", | ||
"Glad", | ||
"ImGui", | ||
"opengl32.lib" | ||
} | ||
|
||
filter "system:windows" | ||
systemversion "latest" | ||
|
||
defines | ||
{ | ||
} | ||
|
||
filter "configurations:Debug" | ||
defines "HZ_DEBUG" | ||
runtime "Debug" | ||
symbols "on" | ||
|
||
filter "configurations:Release" | ||
defines "HZ_RELEASE" | ||
runtime "Release" | ||
optimize "on" | ||
|
||
filter "configurations:Dist" | ||
defines "HZ_DIST" | ||
runtime "Release" | ||
optimize "on" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.