From dda026215f7987f787ab2112087b0cb0cb12a758 Mon Sep 17 00:00:00 2001 From: WSAL Evan Date: Tue, 9 Sep 2025 11:49:20 -0400 Subject: [PATCH] Quick test --- .gitignore | 1 + CMakeLists.txt | 11 +++++++++++ include/core/Test.h | 4 ++++ src/Test.cpp | 11 +++++++++++ 4 files changed, 27 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 include/core/Test.h create mode 100644 src/Test.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ceb1c62 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.20) +project(WV_CORE LANGUAGES CXX) + +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +add_library(WV_CORE STATIC + src/Test.cpp +) + +target_include_directories(WV_CORE PUBLIC $) \ No newline at end of file diff --git a/include/core/Test.h b/include/core/Test.h new file mode 100644 index 0000000..be72f5a --- /dev/null +++ b/include/core/Test.h @@ -0,0 +1,4 @@ +namespace WillowVox::Core +{ + void Test(); +} \ No newline at end of file diff --git a/src/Test.cpp b/src/Test.cpp new file mode 100644 index 0000000..9a89596 --- /dev/null +++ b/src/Test.cpp @@ -0,0 +1,11 @@ +#include + +#include + +namespace WillowVox::Core +{ + void Test() + { + std::cout << "Running Core Test..." << std::endl; + } +} \ No newline at end of file