Skip to content

Commit

Permalink
Add csv-parser
Browse files Browse the repository at this point in the history
Use csv-parser to parse the HYG database in an efficient manner
  • Loading branch information
sturnclaw committed May 15, 2020
1 parent 3283a56 commit 2414fa6
Show file tree
Hide file tree
Showing 3 changed files with 4,673 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ endif (MSVC)
find_package(Freetype REQUIRED)
find_package(OpenGL REQUIRED)

add_subdirectory(contrib/csv-parser)
add_subdirectory(contrib/lz4)
add_subdirectory(contrib/fmt)

Expand Down
5 changes: 5 additions & 0 deletions contrib/csv-parser/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
project(csv-parser LANGUAGES CXX)

add_library(${PROJECT_NAME} INTERFACE)
target_include_directories(${PROJECT_NAME} INTERFACE
${CMAKE_CURRENT_SOURCE_DIR})
Loading

0 comments on commit 2414fa6

Please sign in to comment.