Add CMake project

This commit is contained in:
Grayson Riffe 2026-06-04 11:06:16 -05:00
parent 5654677a58
commit 97727d05d4
Signed by: grayson
SSH Key Fingerprint: SHA256:23HJg9tnL2m6u0uUb26QIrOTFymFZ+xgSH/2UPEBB/I
5 changed files with 76 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.vs/
build/

6
CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
# Watchful Eye project CMakeLists.txt
cmake_minimum_required(VERSION 3.20)
project(watchful-eye)
add_subdirectory(WatchfulEye)

49
CMakePresets.json Normal file
View File

@ -0,0 +1,49 @@
// Watchful Eye CMake presets
{
"version": 3,
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_C_COMPILER": "cl.exe",
"CMAKE_CXX_COMPILER": "cl.exe"
}
},
{
"name": "Debug",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "Debug",
"configurePreset": "Debug"
},
{
"name": "Release",
"configurePreset": "Release"
}
]
}

View File

@ -0,0 +1,10 @@
# Watchful Eye app CMakeLists.txt
add_executable(WatchfulEye WIN32 "src/main.cpp")
set_property(TARGET WatchfulEye PROPERTY CXX_STANDARD 20)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /entry:mainCRTStartup")
if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
set_property(TARGET WatchfulEye PROPERTY WIN32_EXECUTABLE FALSE)
endif()

9
WatchfulEye/src/main.cpp Normal file
View File

@ -0,0 +1,9 @@
// Watchful Eye main file
#include <iostream>
int main(int argc, char* argv[]) {
std::cout << "Watchful Eye\n";
std::cin.get();
return EXIT_SUCCESS;
}