mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
add basic CMakeLists.txt
This commit is contained in:
parent
abbae65775
commit
5fb3ab45a5
2 changed files with 23 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -34,6 +34,7 @@
|
|||
# Make output
|
||||
/benchmark
|
||||
/unit
|
||||
/build
|
||||
|
||||
# QtCreator generic project
|
||||
/fast_double_parser.cflags
|
||||
|
|
22
CMakeLists.txt
Normal file
22
CMakeLists.txt
Normal file
|
@ -0,0 +1,22 @@
|
|||
cmake_policy(SET CMP0048 NEW)
|
||||
project(fast_double_parser LANGUAGES CXX VERSION 0.0.0.0)
|
||||
cmake_minimum_required(VERSION 3.11)
|
||||
|
||||
add_subdirectory(benchmarks/dependencies/abseil-cpp)
|
||||
add_subdirectory(benchmarks/dependencies/double-conversion)
|
||||
|
||||
set(headers include/fast_double_parser.h)
|
||||
set(unit_src tests/unit.cpp)
|
||||
set(stats_src tests/stats.cpp)
|
||||
|
||||
set(benchmark_src benchmarks/benchmark.cpp)
|
||||
|
||||
add_executable(unit ${unit_src})
|
||||
target_include_directories(unit PUBLIC include)
|
||||
|
||||
add_executable(stats ${stats_src})
|
||||
target_include_directories(stats PUBLIC include)
|
||||
|
||||
add_executable(benchmark ${benchmark_src})
|
||||
target_link_libraries(benchmark PUBLIC double-conversion absl_strings)
|
||||
target_include_directories(benchmark PUBLIC include)
|
Loading…
Add table
Reference in a new issue