summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-07-25 13:45:35 (GMT)
committerBrad King <brad.king@kitware.com>2023-07-25 15:35:24 (GMT)
commitc172eecea64154bdc3de4aa64a31771268e8d1da (patch)
tree3641835a1212bd0e9d3a4432e111a91189ed4b24 /Source/cmTarget.cxx
parent1e085cbff7059cd38ebea0bca8cb414fd30c2d06 (diff)
downloadCMake-c172eecea64154bdc3de4aa64a31771268e8d1da.zip
CMake-c172eecea64154bdc3de4aa64a31771268e8d1da.tar.gz
CMake-c172eecea64154bdc3de4aa64a31771268e8d1da.tar.bz2
cmTarget: Restore Fortran_PREPROCESS property initialization
Fix a typo from commit e522f8ca06 (cmTarget: factor out properties initialized for target which compile, 2023-02-01, v3.27.0-rc1~577^2~13), that broke this property. Also update the test suite to use this upgrade as some level of coverage. Fixes: #25123
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 81497f5..b53adf8 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -420,7 +420,7 @@ TargetProperty const StaticTargetProperties[] = {
{ "Fortran_FORMAT"_s, IC::CanCompileSources },
{ "Fortran_MODULE_DIRECTORY"_s, IC::CanCompileSources },
{ "Fortran_COMPILER_LAUNCHER"_s, IC::CanCompileSources },
- { "Fortran_PREPRPOCESS"_s, IC::CanCompileSources },
+ { "Fortran_PREPROCESS"_s, IC::CanCompileSources },
{ "Fortran_VISIBILITY_PRESET"_s, IC::CanCompileSources },
// ---- HIP
COMMON_LANGUAGE_PROPERTIES(HIP),