Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
CMake
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2,684
Issues
2,684
List
Boards
Labels
Milestones
Merge Requests
23
Merge Requests
23
Packages
Packages
Container Registry
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
CMake
CMake
Commits
612d2f66
Commit
612d2f66
authored
Aug 01, 2006
by
Bill Hoffman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ENH: fix for location of error log
parent
df3d4cb3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Modules/CheckCSourceCompiles.cmake
Modules/CheckCSourceCompiles.cmake
+1
-1
Modules/FindQt4.cmake
Modules/FindQt4.cmake
+1
-1
No files found.
Modules/CheckCSourceCompiles.cmake
View file @
612d2f66
...
...
@@ -50,7 +50,7 @@ MACRO(CHECK_C_SOURCE_COMPILES SOURCE VAR)
ELSE
(
${
VAR
}
)
MESSAGE
(
STATUS
"Performing Test
${
VAR
}
- Failed"
)
SET
(
${
VAR
}
""
CACHE INTERNAL
"Test
${
FUNCTION
}
"
)
FILE
(
APPEND
${
CMAKE_BINARY_DIR
}
/CMakeError.log
FILE
(
APPEND
${
CMAKE_BINARY_DIR
}
${
CMAKE_FILES_DIRECTORY
}
/CMakeError.log
"Performing C SOURCE FILE Test
${
VAR
}
failed with the following output:
\n
"
"
${
OUTPUT
}
\n
"
"Source file was:
\n
${
SOURCE
}
\n
"
)
...
...
Modules/FindQt4.cmake
View file @
612d2f66
...
...
@@ -523,7 +523,7 @@ IF (QT4_QMAKE_FOUND)
IF
(
NOT QT_QTCORE_LIBRARY_DEBUG AND NOT QT_QTCORE_LIBRARY_RELEASE
)
IF
(
NOT Qt4_FIND_QUIETLY AND Qt4_FIND_REQUIRED
)
MESSAGE
(
FATAL_ERROR
"Could NOT find QtCore. Check
CMakeFiles
/CMakeError.log for more details."
)
MESSAGE
(
FATAL_ERROR
"Could NOT find QtCore. Check
${
CMAKE_BINARY_DIR
}${
CMAKE_FILES_DIRECTORY
}
/CMakeError.log for more details."
)
ENDIF
(
NOT Qt4_FIND_QUIETLY AND Qt4_FIND_REQUIRED
)
ENDIF
(
NOT QT_QTCORE_LIBRARY_DEBUG AND NOT QT_QTCORE_LIBRARY_RELEASE
)
...
...
Write
Preview
Markdown
is supported
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