aboutsummaryrefslogtreecommitdiffstats
path: root/CheckNeedGetPointer.cmake
blob: 2e53ac3b2be90b71242752cc27baa75fec7fbbf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
)