Initial support for the CMake build system.
authorOscar Fuentes <ofv@wanadoo.es>
Mon, 22 Sep 2008 01:08:49 +0000 (01:08 +0000)
committerOscar Fuentes <ofv@wanadoo.es>
Mon, 22 Sep 2008 01:08:49 +0000 (01:08 +0000)
commit3d01fc7de86c75926e4e5ac7cc49f0116018893d
tree2ea49e2f904dd479a4b941454b776dee762921dd
parentcd4c73aa708d9ecf5d7e0a711dbf359d22b6dd3a
Initial support for the CMake build system.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56419 91177308-0d34-0410-b5e6-96231b3b80d8
61 files changed:
CMakeLists.txt [new file with mode: 0644]
cmake/config-ix.cmake [new file with mode: 0755]
cmake/config-w32.cmake [new file with mode: 0755]
cmake/modules/AddLLVM.cmake [new file with mode: 0755]
cmake/modules/AddPartiallyLinkedObject.cmake [new file with mode: 0755]
cmake/modules/CheckCxxHashmap.cmake [new file with mode: 0755]
cmake/modules/CheckCxxHashset.cmake [new file with mode: 0755]
cmake/modules/FindBison.cmake [new file with mode: 0755]
cmake/modules/LLVMConfig.cmake [new file with mode: 0755]
examples/CMakeLists.txt [new file with mode: 0644]
examples/Fibonacci/CMakeLists.txt [new file with mode: 0644]
include/llvm/ADT/hash_map.cmake [new file with mode: 0644]
include/llvm/ADT/hash_set.cmake [new file with mode: 0644]
include/llvm/ADT/iterator.cmake [new file with mode: 0644]
include/llvm/Config/config.h.cmake [new file with mode: 0644]
include/llvm/Support/DataTypes.h.cmake [new file with mode: 0644]
lib/Analysis/CMakeLists.txt [new file with mode: 0644]
lib/Analysis/IPA/CMakeLists.txt [new file with mode: 0644]
lib/Archive/CMakeLists.txt [new file with mode: 0644]
lib/AsmParser/CMakeLists.txt [new file with mode: 0644]
lib/Bitcode/Reader/CMakeLists.txt [new file with mode: 0644]
lib/Bitcode/Writer/CMakeLists.txt [new file with mode: 0644]
lib/CodeGen/AsmPrinter/CMakeLists.txt [new file with mode: 0644]
lib/CodeGen/CMakeLists.txt [new file with mode: 0644]
lib/CodeGen/SelectionDAG/CMakeLists.txt [new file with mode: 0644]
lib/Debugger/CMakeLists.txt [new file with mode: 0644]
lib/ExecutionEngine/CMakeLists.txt [new file with mode: 0644]
lib/ExecutionEngine/Interpreter/CMakeLists.txt [new file with mode: 0644]
lib/ExecutionEngine/JIT/CMakeLists.txt [new file with mode: 0644]
lib/Linker/CMakeLists.txt [new file with mode: 0644]
lib/Support/CMakeLists.txt [new file with mode: 0644]
lib/System/CMakeLists.txt [new file with mode: 0644]
lib/Target/CMakeLists.txt [new file with mode: 0644]
lib/Target/X86/AsmPrinter/CMakeLists.txt [new file with mode: 0644]
lib/Target/X86/CMakeLists.txt [new file with mode: 0644]
lib/Transforms/Hello/CMakeLists.txt [new file with mode: 0644]
lib/Transforms/IPO/CMakeLists.txt [new file with mode: 0644]
lib/Transforms/Instrumentation/CMakeLists.txt [new file with mode: 0644]
lib/Transforms/Scalar/CMakeLists.txt [new file with mode: 0644]
lib/Transforms/Utils/CMakeLists.txt [new file with mode: 0644]
lib/VMCore/CMakeLists.txt [new file with mode: 0644]
tools/CMakeLists.txt [new file with mode: 0644]
tools/bugpoint/CMakeLists.txt [new file with mode: 0644]
tools/llc/CMakeLists.txt [new file with mode: 0644]
tools/lli/CMakeLists.txt [new file with mode: 0644]
tools/llvm-ar/CMakeLists.txt [new file with mode: 0644]
tools/llvm-as/CMakeLists.txt [new file with mode: 0644]
tools/llvm-bcanalyzer/CMakeLists.txt [new file with mode: 0644]
tools/llvm-config/CMakeLists.txt [new file with mode: 0644]
tools/llvm-db/CMakeLists.txt [new file with mode: 0644]
tools/llvm-dis/CMakeLists.txt [new file with mode: 0644]
tools/llvm-extract/CMakeLists.txt [new file with mode: 0644]
tools/llvm-ld/CMakeLists.txt [new file with mode: 0644]
tools/llvm-link/CMakeLists.txt [new file with mode: 0644]
tools/llvm-nm/CMakeLists.txt [new file with mode: 0644]
tools/llvm-prof/CMakeLists.txt [new file with mode: 0644]
tools/llvm-ranlib/CMakeLists.txt [new file with mode: 0644]
tools/llvm-stub/CMakeLists.txt [new file with mode: 0644]
tools/llvmc2/CMakeLists.txt [new file with mode: 0644]
tools/opt/CMakeLists.txt [new file with mode: 0644]
utils/TableGen/CMakeLists.txt [new file with mode: 0644]