diff options
author | Alec Thomas <alec@swapoff.org> | 2013-11-29 12:47:51 -0500 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2013-11-29 12:47:51 -0500 |
commit | d6579543c099c974b9557249aee72306c5aea99d (patch) | |
tree | c15af8586d5b88941603a91ab50aa5bdb6be2ef7 /CheckNeedGetPointer.cmake | |
parent | 92714459511725e9b638c7f2435d7f18f97600b1 (diff) | |
parent | b92144502f6d7e779aa7f1e7b657aee2314abf57 (diff) |
Merge no-boost into master.
This eradicates boost as a dependency for everything except the Python
integration, which may or may not work for now.
Diffstat (limited to 'CheckNeedGetPointer.cmake')
-rw-r--r-- | CheckNeedGetPointer.cmake | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/CheckNeedGetPointer.cmake b/CheckNeedGetPointer.cmake deleted file mode 100644 index 2e53ac3..0000000 --- a/CheckNeedGetPointer.cmake +++ /dev/null @@ -1,18 +0,0 @@ -cmake_minimum_required(VERSION 2.8.3) - -check_cxx_source_compiles( -" -#include <boost/get_pointer.hpp> - -namespace boost { -template <class T> inline T * get_pointer(const std::shared_ptr<T> &p) { - return p.get(); -} -} - -int main() { - return 0; -} -" -ENTITYX_NEED_GET_POINTER_SHARED_PTR_SPECIALIZATION -) |