edit CMakeLists.txt

This commit is contained in:
Sam4uk 2022-02-04 23:36:26 +02:00
parent 79df7808d2
commit 5a1b4c3068

View File

@ -1,8 +1,11 @@
cmake_minimum_required(VERSION 3.8) cmake_minimum_required(VERSION 3.8)
project(argparse VERSION 1.0.0 LANGUAGES CXX) project(argparse
set("PROJECT_DESCRIPTION" "A single header argument parser for C++17") VERSION 1.0.0
set("PROJECT_HOMEPAGE_URL" "https://github.com/p-ranav/argparse") DESCRIPTION "A single header argument parser for C++17"
HOMEPAGE_URL "https://github.com/p-ranav/argparse"
LANGUAGES CXX
)
option(ARGPARSE_BUILD_TESTS OFF) option(ARGPARSE_BUILD_TESTS OFF)
option(ARGPARSE_LONG_VERSION_ARG_ONLY OFF) option(ARGPARSE_LONG_VERSION_ARG_ONLY OFF)