mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-01-17 14:28:24 +01:00
13 lines
262 B
CMake
13 lines
262 B
CMake
macro (CHECK_STD_TR1_FUNCTIONAL CXX_STD_TR1_FUNCTIONAL)
|
|
include (CheckCXXSourceCompiles)
|
|
check_cxx_source_compiles(
|
|
"
|
|
#include <tr1/functional>
|
|
using std::tr1::function;
|
|
int main()
|
|
{
|
|
return 0;
|
|
}" ${CXX_STD_TR1_FUNCTIONAL})
|
|
endmacro()
|
|
|