Browse Source

Give version numbering control to superbuild repo

master
C. J. Howard 3 years ago
parent
commit
be531e1833
4 changed files with 4 additions and 6 deletions
  1. +3
    -2
      CMakeLists.txt
  2. +1
    -1
      README.md
  3. +0
    -2
      build/.gitignore
  4. +0
    -1
      cmake/project.cmake

+ 3
- 2
CMakeLists.txt View File

@ -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)

+ 1
- 1
README.md View File

@ -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

+ 0
- 2
build/.gitignore View File

@ -1,2 +0,0 @@
*
!.gitignore

+ 0
- 1
cmake/project.cmake View File

@ -1 +0,0 @@
project(antkeeper VERSION "0.0.0")

Loading…
Cancel
Save