mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-09 10:16:48 +08:00
Checking issue 72
This commit is contained in:
parent
ff5ab1903a
commit
c38790bc4d
@ -62,3 +62,4 @@ if (FASTFLOAT_EXHAUSTIVE)
|
||||
fast_float_add_cpp_test(random64)
|
||||
endif(FASTFLOAT_EXHAUSTIVE)
|
||||
|
||||
add_subdirectory(build_tests)
|
||||
1
tests/build_tests/CMakeLists.txt
Normal file
1
tests/build_tests/CMakeLists.txt
Normal file
@ -0,0 +1 @@
|
||||
add_subdirectory(issue72)
|
||||
2
tests/build_tests/issue72/CMakeLists.txt
Normal file
2
tests/build_tests/issue72/CMakeLists.txt
Normal file
@ -0,0 +1,2 @@
|
||||
add_executable(issue72 main.cpp foo.cpp)
|
||||
target_link_libraries(issue72 PUBLIC fast_float)
|
||||
2
tests/build_tests/issue72/foo.cpp
Normal file
2
tests/build_tests/issue72/foo.cpp
Normal file
@ -0,0 +1,2 @@
|
||||
#include "test.h"
|
||||
void foo() { }
|
||||
2
tests/build_tests/issue72/main.cpp
Normal file
2
tests/build_tests/issue72/main.cpp
Normal file
@ -0,0 +1,2 @@
|
||||
#include "test.h"
|
||||
int main() { return 0; }
|
||||
2
tests/build_tests/issue72/test.h
Normal file
2
tests/build_tests/issue72/test.h
Normal file
@ -0,0 +1,2 @@
|
||||
#pragma once
|
||||
#include "fast_float/fast_float.h"
|
||||
Loading…
x
Reference in New Issue
Block a user