Advertisement
Guest User

Untitled

a guest
Jan 27th, 2010
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. Check for working C compiler: cl
  2. Check for working C compiler: cl -- broken
  3. CMake Error at C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake:50 (MESSAGE):
  4. The C compiler "cl" is not able to compile a simple test program.
  5.  
  6. It fails with the following output:
  7.  
  8. Change Dir: C:/Users/Christian/Dev/Cmake_Bin/CMakeFiles/CMakeTmp
  9.  
  10.  
  11.  
  12. Run Build Command:C:\PROGRA~2\MICROS~1.0\Common7\IDE\devenv.com
  13. CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec
  14.  
  15.  
  16.  
  17. Microsoft (R) Visual Studio Version 9.0.30729.1.
  18.  
  19. Copyright (C) Microsoft Corp. All rights reserved.
  20.  
  21.  
  22.  
  23. 'C:\Users\Christian\Dev\Cmake_Bin\CMakeFiles\CMakeTmp\ALL_BUILD.vcproj'
  24. cannot be opened because its project type (.vcproj) is not supported by
  25. this version of the application.
  26.  
  27.  
  28.  
  29. To open it, please use a version that supports this type of project.
  30.  
  31.  
  32. 'C:\Users\Christian\Dev\Cmake_Bin\CMakeFiles\CMakeTmp\cmTryCompileExec.vcproj'
  33. cannot be opened because its project type (.vcproj) is not supported by
  34. this version of the application.
  35.  
  36.  
  37.  
  38. To open it, please use a version that supports this type of project.
  39.  
  40. Invalid project
  41.  
  42.  
  43.  
  44. Use:
  45.  
  46. devenv [solutionfile | projectfile | anyfile.ext] [switches]
  47.  
  48.  
  49.  
  50. The first argument for devenv is usually a solution file or project file.
  51.  
  52. You can also use any other file as the first argument if you want to have
  53. the
  54.  
  55. file open automatically in an editor. When you enter a project file, the
  56. IDE
  57.  
  58. looks for an .sln file with the same base name as the project file in the
  59.  
  60. parent directory for the project file. If no such .sln file exists, then
  61. the
  62.  
  63. IDE looks for a single .sln file that references the project. If no such
  64. single
  65.  
  66. .sln file exists, then the IDE creates an unsaved solution with a default
  67. .sln
  68.  
  69. file name that has the same base name as the project file.
  70.  
  71.  
  72.  
  73. Command line builds:
  74.  
  75. devenv solutionfile.sln /build [ solutionconfig ] [ /project
  76. projectnameorfile [ /projectconfig name ] ]
  77.  
  78. Available command line switches:
  79.  
  80.  
  81.  
  82. /Build Builds the solution or project with the specified solution
  83.  
  84. configuration. For example "Debug". If multiple platforms
  85.  
  86. are possible, the configuration name must be enclosed in quotes
  87.  
  88. and contain platform name. For example: "Debug|Win32".
  89.  
  90. /Clean Deletes build outputs.
  91.  
  92. /Command Starts the IDE and executes the command.
  93.  
  94. /Deploy Builds and then deploys the specified build configuration.
  95.  
  96. /Edit Opens the specified files in a running instance of this
  97.  
  98. application. If there are no running instances, it will
  99.  
  100. start a new instance with a simplified window layout.
  101.  
  102. /LCID Sets the default language in the IDE for the UI.
  103.  
  104. /Log Logs IDE activity to the specified file for troubleshooting.
  105.  
  106. /NoVSIP Disables the VSIP developer's license key for VSIP testing.
  107.  
  108. /Out Appends the build log to a specified file.
  109.  
  110. /Project Specifies the project to build, clean, or deploy.
  111.  
  112. Must be used with /Build, /Rebuild, /Clean, or /Deploy.
  113.  
  114. /ProjectConfig Overrides the project configuration specified in the
  115. solution
  116.  
  117. configuration. For example "Debug". If multiple platforms are
  118.  
  119. possible, the configuration name must be enclosed in quotes
  120.  
  121. and contain platform name. For example: "Debug|Win32".
  122.  
  123. Must be used with /Project.
  124.  
  125. /Rebuild Cleans and then builds the solution or project with the
  126.  
  127. specified configuration.
  128.  
  129. /ResetAddin Removes commands and command UI associated with the specified
  130. Add-in.
  131.  
  132. /ResetSettings Restores the IDE's default settings, optionally resets to
  133.  
  134. the specified VSSettings file.
  135.  
  136. /ResetSkipPkgs Clears all SkipLoading tags added to VSPackages.
  137.  
  138. /Run Compiles and runs the specified solution.
  139.  
  140. /RunExit Compiles and runs the specified solution then closes the IDE.
  141.  
  142. /SafeMode Launches the IDE in safe mode loading minimal windows.
  143.  
  144. /Upgrade Upgrades the project or the solution and all projects in it.
  145.  
  146. A backup of these files will be created as appropriate. Please
  147.  
  148. see Help on 'Visual Studio Conversion Wizard' for more
  149.  
  150. information on the backup process.
  151.  
  152.  
  153.  
  154. Product-specific switches:
  155.  
  156.  
  157.  
  158.  
  159.  
  160. To attach the debugger from the command line, use:
  161.  
  162. VsJITDebugger.exe -p <pid>
  163.  
  164.  
  165.  
  166.  
  167.  
  168. CMake will not be able to correctly generate this project.
  169. Call Stack (most recent call first):
  170. CMakeLists.txt:21 (project)
  171.  
  172.  
  173. Configuring incomplete, errors occurred!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement