Reformat prerequisite file according to convention

This commit makes a few adjustments to the white-space of file
'opm-parser-prereqs.cmake' to honour the conventions of the other
*-prereqs.cmake files within the OPM project's module suites.

No functional changes.
This commit is contained in:
Bård Skaflestad 2014-02-28 19:06:42 +01:00
parent 514240d0eb
commit 9fcd3d8181

View File

@ -3,16 +3,17 @@
# defines that must be present in config.h for our headers # defines that must be present in config.h for our headers
set (opm-parser_CONFIG_VAR set (opm-parser_CONFIG_VAR
HAVE_ERT HAVE_ERT
) )
# dependencies # dependencies
set (opm-parser_DEPS set (opm-parser_DEPS
# compile with C99 support if available # compile with C99 support if available
"C99" "C99"
# compile with C++0x/11 support if available # compile with C++0x/11 support if available
"CXX11Features REQUIRED" "CXX10Features REQUIRED"
# various runtime library enhancements # various runtime library enhancements
"Boost 1.44.0 COMPONENTS date_time filesystem system unit_test_framework REQUIRED" "Boost 1.44.0
"cJSON" COMPONENTS date_time filesystem system unit_test_framework REQUIRED"
) "cJSON"
)