Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
fca0ce54
Commit
fca0ce54
authored
Sep 08, 2004
by
Bill Hoffman
Browse files
ENH: add more output for fortran so I can figure out what is going on with other fortran compilers
parent
815c1cad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Tests/Fortran/CMakeLists.txt
View file @
fca0ce54
PROJECT
(
testf Fortran
)
MESSAGE
(
"ENV_FLAGS = $ENV{FFLAGS}"
)
MESSAGE
(
"CMAKE_Fortran_COMPILER_INIT =
${
CMAKE_Fortran_COMPILER_INIT
}
"
)
MESSAGE
(
"CMAKE_Fortran_COMPILER_FULLPATH =
${
CMAKE_Fortran_COMPILER_FULLPATH
}
"
)
MESSAGE
(
"CMAKE_Fortran_COMPILER =
${
CMAKE_Fortran_COMPILER
}
"
)
MESSAGE
(
"CMAKE_Fortran_FLAGS =
${
CMAKE_Fortran_FLAGS
}
"
)
MESSAGE
(
"All cmake variables:"
)
GET_CMAKE_PROPERTY
(
res VARIABLES
)
FOREACH
(
var
${
res
}
)
MESSAGE
(
"
${
var
}
=
\"
${${
var
}}
\"
"
)
ENDFOREACH
(
var
${
res
}
)
ADD_EXECUTABLE
(
testf hello.f
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment