Add basic project hierarchy and build config

This commit is contained in:
2025-11-01 00:39:18 +10:00
parent 572a83bce6
commit c6ac9a92ce
21 changed files with 95 additions and 47 deletions

2
editor/CMakeLists.txt Normal file
View File

@@ -0,0 +1,2 @@
# Copyright (c) 2025, Jayden Grubb <contact@jaydengrubb.com>
# SPDX-License-Identifier: BSD-3-Clause

View File

7
editor/src/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <cstdlib>
#include <print>
int main(int argc, char *argv[]) {
std::print("Hello, World!\n");
return EXIT_SUCCESS;
}