create cmake project

This commit is contained in:
2019-12-26 23:21:49 -05:00
parent d2dd002965
commit caf65101dd
3 changed files with 11 additions and 1 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
.idea
*.[oa]
cmake-build*/

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.10)
project(test)
set(CMAKE_CXX_STANDARD 17)
add_executable(test test.cpp)

View File

@@ -3,7 +3,7 @@
#include <iostream>
int main() {
Group g = T(4500);
Group g = T(100);
auto s = std::chrono::system_clock::now();
auto cosets = g.solve();