forked from organicmaps/organicmaps-tmp
Storage
This commit is contained in:
parent
9a1c742b15
commit
603286f889
2 changed files with 37 additions and 1 deletions
|
@ -12,7 +12,7 @@ find_package(Threads)
|
|||
|
||||
get_filename_component(PROJECT_SOURCE_DIR . ABSOLUTE)
|
||||
|
||||
include_directories(${CMAKE_HOME_DIRECTORY})
|
||||
include_directories(${CMAKE_HOME_DIRECTORY} ${PROJECT_SOURCE_DIR}/3party/jansson/src)
|
||||
|
||||
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR})
|
||||
set(LIBRARY_OUTPUT_PATH ${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
@ -54,3 +54,4 @@ endfunction()
|
|||
|
||||
add_subdirectory(base)
|
||||
add_subdirectory(geometry)
|
||||
add_subdirectory(storage)
|
||||
|
|
35
storage/CMakeLists.txt
Normal file
35
storage/CMakeLists.txt
Normal file
|
@ -0,0 +1,35 @@
|
|||
#add_subdirectory(storage_tests)
|
||||
|
||||
set(
|
||||
SRC
|
||||
app_store.hpp
|
||||
country.cpp
|
||||
country.hpp
|
||||
country_decl.cpp
|
||||
country_decl.hpp
|
||||
country_info_getter.cpp
|
||||
country_info_getter.hpp
|
||||
country_name_getter.cpp
|
||||
country_name_getter.hpp
|
||||
country_polygon.hpp
|
||||
country_tree.hpp
|
||||
downloader_search_params.hpp
|
||||
downloading_policy.cpp
|
||||
downloading_policy.hpp
|
||||
http_map_files_downloader.cpp
|
||||
http_map_files_downloader.hpp
|
||||
index.cpp
|
||||
index.hpp
|
||||
map_files_downloader.hpp
|
||||
queued_country.cpp
|
||||
queued_country.hpp
|
||||
storage.cpp
|
||||
storage.hpp
|
||||
storage_defines.cpp
|
||||
storage_defines.hpp
|
||||
storage_helpers.cpp
|
||||
storage_helpers.hpp
|
||||
|
||||
)
|
||||
|
||||
omim_add_library(storage ${SRC})
|
Loading…
Add table
Reference in a new issue