Add CMake project
This commit is contained in:
parent
5654677a58
commit
97727d05d4
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
.vs/
|
||||
build/
|
||||
6
CMakeLists.txt
Normal file
6
CMakeLists.txt
Normal 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
49
CMakePresets.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
10
WatchfulEye/CMakeLists.txt
Normal file
10
WatchfulEye/CMakeLists.txt
Normal 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
9
WatchfulEye/src/main.cpp
Normal 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;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user