From 0061f9692faf1d7e54c9a32bfffa49cc37b20374 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 17 Jul 2020 16:34:06 +0200 Subject: [PATCH] Initial commit --- .gitignore | 4 ++++ CMakeLists.txt | 9 +++++++++ README.md | 5 +++++ 3 files changed, 18 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..32dcdee --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.vs +out + +*.json \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..33ce1c4 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,9 @@ +# CMakeList.txt : Top-level CMake project file, do global configuration +# and include sub-projects here. +# +cmake_minimum_required (VERSION 3.8) + +project ("GMP++") + +# Include sub-projects. +add_subdirectory ("GMP++") diff --git a/README.md b/README.md new file mode 100644 index 0000000..27ed734 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# GM3P +[ʤiːm​əp] + +GM3P – which stands for GMP++ – is a C++ binding for native GMP objects and functions. +It aims to give GMP a modern C++ interface. \ No newline at end of file