commit dda026215f7987f787ab2112087b0cb0cb12a758 Author: WSAL Evan Date: Tue Sep 9 11:49:20 2025 -0400 Quick test 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