Fix cmake option command by including help text

The option() command expects a help string between the variable and the
initial value.

Closes #241

Signed-off-by: Sean Robinson <sean.robinson@scottsdalecc.edu>
This commit is contained in:
Sean Robinson 2023-01-17 14:26:14 -07:00
parent be705d191b
commit d0beb40d64

View File

@ -7,8 +7,8 @@ project(argparse
LANGUAGES CXX
)
option(ARGPARSE_INSTALL ON)
option(ARGPARSE_BUILD_TESTS OFF)
option(ARGPARSE_INSTALL "Include an install target" ON)
option(ARGPARSE_BUILD_TESTS "Build tests" OFF)
include(GNUInstallDirs)
include(CMakePackageConfigHelpers)