1# Copyright (C) 2019 T. Zachary Laine 2# 3# Distributed under the Boost Software License, Version 1.0. (See 4# accompanying file LICENSE_1_0.txt or copy at 5# http://www.boost.org/LICENSE_1_0.txt) 6include_directories(${CMAKE_HOME_DIRECTORY}) 7 8macro(add_snippets name) 9 add_executable(${name} ${name}.cpp) 10 target_link_libraries(${name} yap) 11 if (clang_on_linux) 12 target_link_libraries(${name} c++) 13 endif () 14endmacro() 15