Print bounds on generic type parameters
[hiphop-php.git] / hphp / CMakeLists.txt
blobe1251b5078a68896c66480467e21978f9469ced3
2 #   +----------------------------------------------------------------------+
3 #   | HipHop for PHP                                                       |
4 #   +----------------------------------------------------------------------+
5 #   | Copyright (c) 2010 Facebook, Inc. (http://www.facebook.com)          |
6 #   | Copyright (c) 1997-2010 The PHP Group                                |
7 #   +----------------------------------------------------------------------+
8 #   | This source file is subject to version 3.01 of the PHP license,      |
9 #   | that is bundled with this package in the file LICENSE, and is        |
10 #   | available through the world-wide-web at the following url:           |
11 #   | http://www.php.net/license/3_01.txt                                  |
12 #   | If you did not receive a copy of the PHP license and are unable to   |
13 #   | obtain it through the world-wide-web, please send a note to          |
14 #   | license@php.net so we can mail you a copy immediately.               |
15 #   +----------------------------------------------------------------------+
18 add_definitions("-DHHVM")
20 if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/facebook")
21   # I'm sorry, but facebook's internal repo has the top level dir stored inside
22   # of hphp/, so we need to pull that one in first if it exists
23   CMAKE_MINIMUM_REQUIRED(VERSION 2.8.7 FATAL_ERROR)
24   get_filename_component(HPHP_HOME "${CMAKE_CURRENT_SOURCE_DIR}/.." ABSOLUTE)
25   set(ENABLE_EXTENSION_PGSQL OFF CACHE INTERNAL "" FORCE)
26   set(TP_DIR "${HPHP_HOME}/hphp/public_tld/third-party/")
27   set(TP_BUILD_DIR "${TP_DIR}")
28   set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/facebook/CMake"
29                         "${CMAKE_CURRENT_SOURCE_DIR}/public_tld/CMake"
30                         ${CMAKE_MODULE_PATH})
31   include(HPHPCompiler)
32 endif()
34 include(HHVMProject)
36 include(HHVMExtensionConfig)
37 # Before we do anything else, we'll configure the extensions,
38 # so that the defines take effect globally.
39 file(GLOB subdirs ${CMAKE_CURRENT_SOURCE_DIR}/runtime/ext/*)
40 foreach (dir ${subdirs})
41   if (IS_DIRECTORY ${dir})
42     if (EXISTS "${dir}/config.cmake")
43       set(HRE_CURRENT_EXT_PATH "${dir}")
44       include("${dir}/config.cmake")
45     endif()
46   endif()
47 endforeach()
48 HHVM_EXTENSION_RESOLVE_DEPENDENCIES()
50 if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/facebook")
51   include(FBTLD)
52 endif()
54 include(HPHPSetup)
55 include(HPHPFindLibs)
56 include(HHVMGenerateConfig)
57 HHVM_GENERATE_CONFIG("${CMAKE_CURRENT_BINARY_DIR}/util/hphp-config.h")
59 if (ENABLE_COTIRE)
60   include(cotire)
61   FIND_PATH(LIBC_INCLUDE_PATH stdlib.h)
63   # Detect the architecture-specific include directory
64   IF("${CMAKE_LIBRARY_ARCHITECTURE}" STREQUAL "")
65     # For CentOS/Red Hat where they store it directly in /usr/include
66     SET(ARCH_INCLUDE_PATH "${LIBC_INCLUDE_PATH}/bits")
67   ELSE()
68     FIND_PATH(ARCH_INCLUDE_PATH ${CMAKE_LIBRARY_ARCHITECTURE})
69     SET(ARCH_INCLUDE_PATH "${ARCH_INCLUDE_PATH}/${CMAKE_LIBRARY_ARCHITECTURE}")
70   ENDIF()
72   set_property(DIRECTORY
73     PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH
74       "${LIBC_INCLUDE_PATH}/stdlib.h"
75       "${LIBC_INCLUDE_PATH}/string.h"
76       "${LIBC_INCLUDE_PATH}/ansidecl.h"
77       "${LIBC_INCLUDE_PATH}/bfd.h"
78       "${LIBC_INCLUDE_PATH}/libelf.h"
79       "${LIBC_INCLUDE_PATH}/elf.h"
80       "${LIBC_INCLUDE_PATH}/gelf.h"
81       "${LIBC_INCLUDE_PATH}/resolv.h"
82       "${ARCH_INCLUDE_PATH}"
83       "${CCLIENT_INCLUDE_PATH}"
84       "${JEMALLOC_INCLUDE_DIR}/jemalloc"
85       "${ONIGURUMA_INCLUDE_DIR}/onigposix.h"
86       "${ONIGURUMA_INCLUDE_DIR}/oniguruma.h"
87       "${LIBPNG_INCLUDE_DIRS}/png.h"
88       "${LDAP_INCLUDE_DIR}/ldap.h"
89       "${LIBSQLITE3_INCLUDE_DIR}/sqlite3ext.h"
90       "${CMAKE_SOURCE_DIR}"
91       "${CMAKE_BINARY_DIR}")
93   # XED headers need to be wrapped in extern "C"
94   if (ENABLE_XED)
95     if (LibXed_INCLUDE_DIR)
96       set_property(DIRECTORY
97           APPEND PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH
98             "${LibXed_INCLUDE_DIR}")
99     else()
100       set_property(DIRECTORY
101           APPEND PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH
102             "${TP_DIR}/xed/xed/build/include/xed")
103     endif()
104   endif()
105 endif()
107 # Only thing to do directly in tools is install this one script. Tools also has
108 # its own Makefile, so just do it here instead of dealing with moving that all
109 # around.
110 install(PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/tools/oss-repo-mode
111   RENAME hhvm-repo-mode
112   DESTINATION bin
113   COMPONENT dev)
115 add_definitions("-DUSE_CMAKE")
117 enable_language(ASM)
119 link_libraries(folly)
120 if (NOT PCRE_LIBRARY)
121   link_libraries(pcre)
122 endif()
124 add_subdirectory(tools/hfsort)
125 add_subdirectory(tools/version)
126 add_subdirectory(tools/tc-print)
128 add_subdirectory(compiler)
129 add_subdirectory(hack)
130 add_subdirectory(hhbbc)
131 add_subdirectory(neo)
132 add_subdirectory(parser)
134 add_subdirectory(runtime)
135 add_subdirectory(runtime/ext)
137 # The runtime/test binary require GTest and GMock to be installed globally
138 option(RUNTIME_TEST_BIN "Create the HHVM runtime/test binary" OFF)
139 if (RUNTIME_TEST_BIN)
140   add_subdirectory(runtime/test)
141 endif ()
143 add_subdirectory(system)
144 add_subdirectory(util)
145 add_subdirectory(ppc64-asm)
146 add_subdirectory(vixl)
147 add_subdirectory(zend)
149 add_subdirectory(hhvm)
151 option(TEST_BIN "Create the HHVM test binary" OFF)
152 if (TEST_BIN)
153   add_subdirectory(test)
154 endif ()
156 add_subdirectory(tools/gdb)
158 include(test/dso_test/dso_test.cmake)
160 # Keep this last
161 add_subdirectory(tools/hphpize)