From bf99bb71cc1d01d836b5ac3bdcb39e9885fc6099 Mon Sep 17 00:00:00 2001 From: WSAL Evan Date: Tue, 30 Sep 2025 10:21:28 -0400 Subject: [PATCH] Working test --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1391c63..0174295 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,16 +1,16 @@ -cmake_minimum_required(VERSION 3.20) -project(WV_CORE LANGUAGES CXX) +cmake_minimum_required(VERSION 3.24) +project(WVCore LANGUAGES CXX) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) -add_library(WV_CORE STATIC +add_library(WVCore STATIC src/Test.cpp ) -target_include_directories(WV_CORE PUBLIC +target_include_directories(WVCore PUBLIC $ $ ) -target_compile_features(WV_CORE PUBLIC cxx_std_20) \ No newline at end of file +target_compile_features(WVCore PUBLIC cxx_std_20) \ No newline at end of file