From a02ff7d8e42590aa9083f6909aa446a732efa4a4 Mon Sep 17 00:00:00 2001 From: wiharb Date: Wed, 6 Mar 2024 09:18:48 -0500 Subject: [PATCH 1/4] Update 'README.md' --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1848e3a..5f1dc63 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ -_build/ - Location for build artifacts (gitignore) -_external/ (Compiled/src 3rd party libraries and headers) -assets/ - binary assets (textures, audio files, compiled shaders) -source/ (Source files for project) -.gitattributes -.gitignore -LICENCE -CMakeLists.txt -README +## Structure +_build/ - Location for build artifacts (gitignore) +_external/ (Compiled/src 3rd party libraries and headers) +assets/ - binary assets (textures, audio files, compiled shaders) +source/ (Source files for project) +.gitattributes +.gitignore +LICENCE +CMakeLists.txt +README ## Asset handling CMAKE implements `ASSETS_PATH` as either a relative or absolute path to assets/ From 41be05a22f894478f6d9dd1d3db81aa801531741 Mon Sep 17 00:00:00 2001 From: wiharb Date: Thu, 7 Mar 2024 07:26:43 -0500 Subject: [PATCH 2/4] Update 'README.md' --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f1dc63..736df41 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,11 @@ +## Overview +A simple cmake template +- Works with VS Code and Visual Studio 2022 +- Works on Windows (probably Linux as well but have not tested) +- Initialize with : `cmake -S . -B ./_build +- Pulls down 3rd party dependancies with CMake Fetch ## Structure +``` _build/ - Location for build artifacts (gitignore) _external/ (Compiled/src 3rd party libraries and headers) assets/ - binary assets (textures, audio files, compiled shaders) @@ -8,6 +15,6 @@ source/ (Source files for project) LICENCE CMakeLists.txt README - +``` ## Asset handling CMAKE implements `ASSETS_PATH` as either a relative or absolute path to assets/ From eb2b14a13a7284af1f209ad3d3d2d289419a9412 Mon Sep 17 00:00:00 2001 From: wiharb Date: Thu, 7 Mar 2024 07:26:57 -0500 Subject: [PATCH 3/4] Update 'README.md' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 736df41..33a4b4e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A simple cmake template - Works with VS Code and Visual Studio 2022 - Works on Windows (probably Linux as well but have not tested) -- Initialize with : `cmake -S . -B ./_build +- Initialize with : `cmake -S . -B ./_build` - Pulls down 3rd party dependancies with CMake Fetch ## Structure ``` From eaa2dd26c7a2accf8cd204b7403dbe77826a3d73 Mon Sep 17 00:00:00 2001 From: wiharb Date: Thu, 7 Mar 2024 07:28:41 -0500 Subject: [PATCH 4/4] Update 'README.md' --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 33a4b4e..5d6365a 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,13 @@ A simple cmake template - Works on Windows (probably Linux as well but have not tested) - Initialize with : `cmake -S . -B ./_build` - Pulls down 3rd party dependancies with CMake Fetch +- Makes `ASSETS_PATH` macro available to code ## Structure ``` _build/ - Location for build artifacts (gitignore) _external/ (Compiled/src 3rd party libraries and headers) assets/ - binary assets (textures, audio files, compiled shaders) -source/ (Source files for project) +sources/ (Source files for project) .gitattributes .gitignore LICENCE