Limbo
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FindClangxx.mk
Go to the documentation of this file.
1 ## @file FindClangxx.mk
2 ## @brief find clang++, determine CXX
3 ## @author Yibo Lin
4 ## @date Jan 2017
5 ##
6 ## @param CXX set CXX as C++ compiler
7 
8 ## @cond
9 
10 ifneq ($(shell which clang++),)
11  CXX = clang++
12 else
13  CXX = g++
14 endif
15 
16 ## @endcond