[llvm-commits] [compiler-rt] r77937 - in /compiler-rt/trunk: CMakeLists.txt lib/CMakeLists.txt
Edward O'Callaghan
eocallaghan at auroraux.org
Sun Aug 2 19:15:06 PDT 2009
Author: evocallaghan
Date: Sun Aug 2 21:15:06 2009
New Revision: 77937
URL: http://llvm.org/viewvc/llvm-project?rev=77937&view=rev
Log:
A few CMake formating fixes for compiler-rt.
Modified:
compiler-rt/trunk/CMakeLists.txt
compiler-rt/trunk/lib/CMakeLists.txt
Modified: compiler-rt/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/CMakeLists.txt?rev=77937&r1=77936&r2=77937&view=diff
==============================================================================
--- compiler-rt/trunk/CMakeLists.txt (original)
+++ compiler-rt/trunk/CMakeLists.txt Sun Aug 2 21:15:06 2009
@@ -1,7 +1,7 @@
# See docs/CMake.html for instructions about how to build Compiler-RT with CMake.
-project(CompilerRT)
-cmake_minimum_required(VERSION 2.6.1)
+PROJECT( CompilerRT )
+CMAKE_MINIMUM_REQUIRED( VERSION 2.6 )
set(PACKAGE_NAME compiler-rt)
set(PACKAGE_VERSION 1.0svn)
@@ -30,5 +30,3 @@
# Tests are being ignored for until the very basics are working.
# ADD_SUBDIRECTORY( test )
-# Creates a shared lib .so
-ADD_LIBRARY( ${PROJECT_NAME} SHARED ${SRCS})
Modified: compiler-rt/trunk/lib/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/CMakeLists.txt?rev=77937&r1=77936&r2=77937&view=diff
==============================================================================
--- compiler-rt/trunk/lib/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/CMakeLists.txt Sun Aug 2 21:15:06 2009
@@ -27,3 +27,6 @@
# ADD_SUBDIRECTORY( ppc )
# ADD_SUBDIRECTORY( x86_64 )
# ADD_SUBDIRECTORY( i386 )
+
+# Creates a shared lib .so
+ADD_LIBRARY( ${PROJECT_NAME} SHARED ${SRCS} )
More information about the llvm-commits
mailing list