diff --git a/CMakeLists.txt b/CMakeLists.txt index 9747868..a77be21 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,8 @@ cmake_minimum_required(VERSION 3.7) -# Include project macro -include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/project.cmake) +option(VERSION_STRING "Project version string" "0.0.0") + +project(antkeeper VERSION ${VERSION_STRING}) # Set compiler flags if(CMAKE_COMPILER_IS_GNUCC) diff --git a/README.md b/README.md index df5b94b..2d9c5be 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Download the Antkeeper build system, source code, and all dependencies via the [ git clone --recursive https://github.com/antkeeper/antkeeper-superbuild.git -Detailed configuration and building instructions can be found in the README of the superbuild repository. +Detailed configuration and build instructions can be found in the [README](https://github.com/antkeeper/antkeeper-superbuild/blob/master/README.md) of the superbuild repository. ## License diff --git a/build/.gitignore b/build/.gitignore deleted file mode 100644 index c96a04f..0000000 --- a/build/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -* -!.gitignore \ No newline at end of file diff --git a/cmake/project.cmake b/cmake/project.cmake deleted file mode 100644 index a6632b2..0000000 --- a/cmake/project.cmake +++ /dev/null @@ -1 +0,0 @@ -project(antkeeper VERSION "0.0.0")