Initial commit

This commit is contained in:
Selim Mustafaev 2023-12-31 13:19:44 +03:00
commit 885e278f96
3 changed files with 18 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.idea/
cmake-build*/

9
CMakeLists.txt Normal file
View File

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.28)
project(aliencat_exporter)
set(CMAKE_CXX_STANDARD 20)
find_package(prometheus-cpp CONFIG REQUIRED)
add_executable(aliencat_exporter main.cpp)
target_link_libraries(aliencat_exporter PRIVATE prometheus-cpp::pull)

6
main.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}