summaryrefslogtreecommitdiff
path: root/Modules/Platform/Windows-windres.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-07-13 10:27:14 -0400
committerBrad King <brad.king@kitware.com>2015-07-13 10:49:46 -0400
commit6f94b03c976088d177891ff69a9fad88de42e420 (patch)
tree8e3ee7f6b68e1349ca7e8f01905c8e9d988ce31c /Modules/Platform/Windows-windres.cmake
parent179aa0bb0a8654efe6e3e606afdf104dbfeb3881 (diff)
downloadcmake-6f94b03c976088d177891ff69a9fad88de42e420.tar.gz
Place <DEFINES> before <FLAGS> consistently across compilers
Update our values for CMAKE_<LANG>_COMPILE_OBJECT, CMAKE_<LANG>_CREATE_ASSEMBLY_SOURCE, and CMAKE_<LANG>_CREATE_PREPROCESSED_SOURCE to place <DEFINES> before <FLAGS> consistently across supported compilers. We already do this for most compilers, so update the rest for consistency.
Diffstat (limited to 'Modules/Platform/Windows-windres.cmake')
-rw-r--r--Modules/Platform/Windows-windres.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/Windows-windres.cmake b/Modules/Platform/Windows-windres.cmake
index 01d6be3dfd..c082b5db47 100644
--- a/Modules/Platform/Windows-windres.cmake
+++ b/Modules/Platform/Windows-windres.cmake
@@ -1 +1 @@
-set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff <FLAGS> <DEFINES> <SOURCE> <OBJECT>")
+set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff <DEFINES> <FLAGS> <SOURCE> <OBJECT>")