blob: 3f8fa701c71a078d8d17930929a07dbb4f1055f3 [file] [log] [blame]
Edwin Vane59d93af2013-09-30 13:59:21 +00001get_filename_component(ClangApplyReplacementsLocation
2 "${CMAKE_CURRENT_SOURCE_DIR}/../../clang-apply-replacements/include" REALPATH)
3get_filename_component(CommonIncLocation
4 "${CMAKE_CURRENT_SOURCE_DIR}/../include" REALPATH)
5include_directories(
6 ${ClangApplyReplacementsLocation}
7 ${CommonIncLocation}
8 )
9
10add_extra_unittest(ClangApplyReplacementsTests
11 ReformattingTest.cpp
12 )
13
14target_link_libraries(ClangApplyReplacementsTests
15 clangApplyReplacements
NAKAMURA Takumidc872ed2014-10-30 00:44:01 +000016 clangToolingCore
Edwin Vane59d93af2013-09-30 13:59:21 +000017 )