The following issue has been SUBMITTED. 
====================================================================== 
http://public.kitware.com/Bug/view.php?id=15088 
====================================================================== 
Reported By:                Frank Miller
Assigned To:                
====================================================================== 
Project:                    CMake
Issue ID:                   15088
Category:                   CMake
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     new
====================================================================== 
Date Submitted:             2014-08-14 17:45 EDT
Last Modified:              2014-08-14 17:45 EDT
====================================================================== 
Summary:                    Ninja generator makes an invalid RC_COMPILER rule
Description: 
When the project() command is used without C language support as in
project(myproj CXX), the ninja generator will create a rules.ninja file with an
empty string where cmcldeps.exe should be. Something like the following:

    rule RC_COMPILER
      depfile = $DEP_FILE
      deps = gcc
      command = "" RC $in "$DEP_FILE" $out "Note: including file: " "c:/Program
Files (x86)/Microsoft Visual Studio 12.0/VC/bin/cl.exe"
c:\PROGRA~2\WI3CF2~1\8.1\bin\x86\rc.exe  $FLAGS $DEFINES /fo$out $in
      description = Building RC object $out



Steps to Reproduce: 
The following patch will cause the MFC test to fail

diff --git a/Tests/MFC/CMakeLists.txt.in b/Tests/MFC/CMakeLists.txt.in
index e6bfabd..c1d0754 100644
--- a/Tests/MFC/CMakeLists.txt.in
+++ b/Tests/MFC/CMakeLists.txt.in
@@ -1,5 +1,5 @@
 cmake_minimum_required(VERSION 2.8)
-project(mfc1)
+project(mfc1 CXX)

 macro(replace_flags var these those)
   if("${${var}}" MATCHES "${these}")

Additional Information: 
This used to work in cmake 2.8.
====================================================================== 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2014-08-14 17:45 Frank Miller   New Issue                                    
======================================================================

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers

Reply via email to