blob: b1259a5f6a40e3dd57964996f0840c22d549b0e0 [file] [edit]
if(BUILD_LLVM_DWARF)
add_subdirectory(llvm-project)
endif()
include_directories(
googletest/googletest
googletest/googletest/include
)
if(BUILD_TESTS)
add_library(gtest STATIC googletest/googletest/src/gtest-all.cc)
add_library(gtest_main STATIC googletest/googletest/src/gtest_main.cc)
target_compile_options(gtest PRIVATE "-fno-rtti")
target_compile_options(gtest_main PRIVATE "-fno-rtti")
endif()