[llvm-commits] [compiler-rt] r81616 - /compiler-rt/trunk/CMakeLists.txt

Edward O'Callaghan eocallaghan at auroraux.org
Sat Sep 12 09:44:57 PDT 2009


Author: evocallaghan
Date: Sat Sep 12 11:44:57 2009
New Revision: 81616

URL: http://llvm.org/viewvc/llvm-project?rev=81616&view=rev
Log:
Fix include path to config.h for CMake build system.

Modified:
    compiler-rt/trunk/CMakeLists.txt

Modified: compiler-rt/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/CMakeLists.txt?rev=81616&r1=81615&r2=81616&view=diff

==============================================================================
--- compiler-rt/trunk/CMakeLists.txt (original)
+++ compiler-rt/trunk/CMakeLists.txt Sat Sep 12 11:44:57 2009
@@ -22,6 +22,10 @@
 INCLUDE( ConfigureChecks.cmake )
 CONFIGURE_FILE( config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
 
+INCLUDE_DIRECTORIES(
+ ${CMAKE_CURRENT_BINARY_DIR}
+)
+
 install(DIRECTORY include
   DESTINATION .
   PATTERN ".svn" EXCLUDE





More information about the llvm-commits mailing list