commit 44dd77d717bea06994dcde65e0fe2d062bfd6f48 Author: TinyAtoms Date: Mon Mar 28 11:18:26 2022 -0300 test diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..933bd3a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,18 @@ +cmake_minimum_required(VERSION 3.7...3.19) + +if (${CMAKE_VERSION} VERSION_LESS 3.12) + cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}) +endif () + +project(test VERSION 1.0 + DESCRIPTION "mirror test" + LANGUAGES CXX) + +set(CMAKE_CXX_STANDARD 14) + +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +# Sagar's Linear Probing +add_executable(mirror-test + ${PROJECT_SOURCE_DIR}/main.cpp + ) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..50a4ee4 --- /dev/null +++ b/main.cpp @@ -0,0 +1,5 @@ +#include + +int main(){ +std::cout << "Get fucked\n"; +} \ No newline at end of file