CMake: set configure macro LLVM_PREFIX
[oota-llvm.git] / include / llvm / Config / llvm-config.h.cmake
1 /*===-- llvm/config/llvm-config.h - llvm configure variable -------*- C -*-===*/
2 /*                                                                            */
3 /*                     The LLVM Compiler Infrastructure                       */
4 /*                                                                            */
5 /* This file is distributed under the University of Illinois Open Source      */
6 /* License. See LICENSE.TXT for details.                                      */
7 /*                                                                            */
8 /*===----------------------------------------------------------------------===*/
9
10 /* This file enumerates all of the llvm variables from configure so that
11    they can be in exported headers and won't override package specific
12    directives.  This is a C file so we can include it in the llvm-c headers.  */
13
14 /* Installation directory for binary executables */
15 #cmakedefine LLVM_BINDIR "${LLVM_BINDIR}"
16
17 /* Time at which LLVM was configured */
18 #cmakedefine LLVM_CONFIGTIME "${LLVM_CONFIGTIME}"
19
20 /* Installation directory for data files */
21 #cmakedefine LLVM_DATADIR "${LLVM_DATADIR}"
22
23 /* Installation directory for documentation */
24 #cmakedefine LLVM_DOCSDIR "${LLVM_DOCSDIR}"
25
26 /* Installation directory for config files */
27 #cmakedefine LLVM_ETCDIR "${LLVM_ETCDIR}"
28
29 /* Host triple we were built on */
30 #cmakedefine LLVM_HOSTTRIPLE "${LLVM_HOSTTRIPLE}"
31
32 /* Installation directory for include files */
33 #cmakedefine LLVM_INCLUDEDIR "${LLVM_INCLUDEDIR}"
34
35 /* Installation directory for .info files */
36 #cmakedefine LLVM_INFODIR "${LLVM_INFODIR}"
37
38 /* Installation directory for libraries */
39 #cmakedefine LLVM_LIBDIR "${LLVM_LIBDIR}"
40
41 /* Installation directory for man pages */
42 #cmakedefine LLVM_MANDIR "${LLVM_MANDIR}"
43
44 /* Build multithreading support into LLVM */
45 #cmakedefine LLVM_MULTITHREADED
46
47 /* LLVM architecture name for the native architecture, if available */
48 #cmakedefine LLVM_NATIVE_ARCH ${LLVM_NATIVE_ARCH}Target
49
50 /* Short LLVM architecture name for the native architecture, if available */
51 #cmakedefine LLVM_NATIVE_ARCHNAME ${LLVM_NATIVE_ARCH}
52
53 /* Define if this is Unixish platform */
54 #cmakedefine LLVM_ON_UNIX
55
56 /* Define if this is Win32ish platform */
57 #cmakedefine LLVM_ON_WIN32
58
59 /* Define to path to circo program if found or 'echo circo' otherwise */
60 #cmakedefine LLVM_PATH_CIRCO "${LLVM_PATH_CIRCO}"
61
62 /* Define to path to dot program if found or 'echo dot' otherwise */
63 #cmakedefine LLVM_PATH_DOT "${LLVM_PATH_DOT}"
64
65 /* Define to path to dotty program if found or 'echo dotty' otherwise */
66 #cmakedefine LLVM_PATH_DOTTY "${LLVM_PATH_DOTTY}"
67
68 /* Define to path to fdp program if found or 'echo fdp' otherwise */
69 #cmakedefine LLVM_PATH_FDP "${LLVM_PATH_FDP}"
70
71 /* Define to path to Graphviz program if found or 'echo Graphviz' otherwise */
72 #cmakedefine LLVM_PATH_GRAPHVIZ "${LLVM_PATH_GRAPHVIZ}"
73
74 /* Define to path to gv program if found or 'echo gv' otherwise */
75 #cmakedefine LLVM_PATH_GV "${LLVM_PATH_GV}"
76
77 /* Define to path to neato program if found or 'echo neato' otherwise */
78 #cmakedefine LLVM_PATH_NEATO "${LLVM_PATH_NEATO}"
79
80 /* Define to path to twopi program if found or 'echo twopi' otherwise */
81 #cmakedefine LLVM_PATH_TWOPI "${LLVM_PATH_TWOPI}"
82
83 /* Installation prefix directory */
84 #cmakedefine LLVM_PREFIX "${LLVM_PREFIX}"