Initial commit
This commit is contained in:
10
third_party/CMakeLists.txt
vendored
Normal file
10
third_party/CMakeLists.txt
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# Disable warnings for all third party code
|
||||
add_compile_options(-w)
|
||||
|
||||
add_library(nanobench nanobench.cpp)
|
||||
target_include_directories(
|
||||
nanobench PUBLIC SYSTEM ${CMAKE_CURRENT_LIST_DIR}/include/nanobench)
|
||||
|
||||
add_library(doctest doctest.cpp)
|
||||
target_include_directories(
|
||||
doctest PUBLIC SYSTEM ${CMAKE_CURRENT_LIST_DIR}/include/doctest)
|
||||
2
third_party/doctest.cpp
vendored
Normal file
2
third_party/doctest.cpp
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
||||
#include <doctest.h>
|
||||
7134
third_party/include/doctest/doctest.h
vendored
Normal file
7134
third_party/include/doctest/doctest.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3484
third_party/include/nanobench/nanobench.h
vendored
Normal file
3484
third_party/include/nanobench/nanobench.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2
third_party/nanobench.cpp
vendored
Normal file
2
third_party/nanobench.cpp
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
#define ANKERL_NANOBENCH_IMPLEMENT
|
||||
#include <nanobench.h>
|
||||
Reference in New Issue
Block a user