Skip to content

Commit 3193c49

Browse files
authored
build: add project information in the CMakeLists.txt (#69)
1 parent 58f079f commit 3193c49

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

CMakeLists.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
cmake_minimum_required(VERSION 3.5)
1+
cmake_minimum_required(VERSION 3.12)
22

3-
project(MyFibonacci)
3+
project(
4+
MyFibonacci
5+
VERSION 0.0.0
6+
DESCRIPTION "A starter C++ project for generating a Fibonacci sequence."
7+
HOMEPAGE_URL https://github.com/threeal/cpp-starter)
48

59
# Disable testing build if built as a subproject.
610
if(NOT CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)

0 commit comments

Comments
 (0)