Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/3party
diff options
context:
space:
mode:
authorTimofey <t.danshin@corp.mail.ru>2016-09-29 15:47:03 +0300
committerTimofey <t.danshin@corp.mail.ru>2016-10-04 14:32:46 +0300
commit117816a3ed32299d0672dffb60b80576408a3028 (patch)
treeee879a2bbbda04aecf6d5ac2e5e7d70e2fed1e66 /3party
parentfc814daaf9b1854e97237050f98a4e5cdc475073 (diff)
Decimated spaces in the CMake files.
Diffstat (limited to '3party')
-rw-r--r--3party/jansson/CMakeLists.txt46
-rw-r--r--3party/minizip/CMakeLists.txt16
-rw-r--r--3party/opening_hours/CMakeLists.txt26
-rw-r--r--3party/opening_hours/opening_hours_tests/CMakeLists.txt4
-rw-r--r--3party/succinct/CMakeLists.txt52
-rw-r--r--3party/tomcrypt/CMakeLists.txt16
6 files changed, 80 insertions, 80 deletions
diff --git a/3party/jansson/CMakeLists.txt b/3party/jansson/CMakeLists.txt
index 741cf615c8..ee2aadf93b 100644
--- a/3party/jansson/CMakeLists.txt
+++ b/3party/jansson/CMakeLists.txt
@@ -5,34 +5,34 @@ project(jansson C CXX)
include_directories(src ../../)
add_compile_options(
- "-Wall"
- "-Wno-unused-function"
+ "-Wall"
+ "-Wno-unused-function"
)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
-
+
set(
- SRC
- jansson_handle.cpp
- jansson_handle.hpp
- myjansson.cpp
- myjansson.hpp
- src/dump.c
- src/error.c
- src/hashtable.c
- src/hashtable.h
- src/jansson.h
- src/jansson_config.h
- src/jansson_private.h
- src/load.c
- src/memory.c
- src/strbuffer.c
- src/strbuffer.h
- src/strconv.c
- src/utf.c
- src/utf.h
- src/value.c
+ SRC
+ jansson_handle.cpp
+ jansson_handle.hpp
+ myjansson.cpp
+ myjansson.hpp
+ src/dump.c
+ src/error.c
+ src/hashtable.c
+ src/hashtable.h
+ src/jansson.h
+ src/jansson_config.h
+ src/jansson_private.h
+ src/load.c
+ src/memory.c
+ src/strbuffer.c
+ src/strbuffer.h
+ src/strconv.c
+ src/utf.c
+ src/utf.h
+ src/value.c
)
add_library(jansson ${SRC})
diff --git a/3party/minizip/CMakeLists.txt b/3party/minizip/CMakeLists.txt
index 98a51deda2..9fb7501463 100644
--- a/3party/minizip/CMakeLists.txt
+++ b/3party/minizip/CMakeLists.txt
@@ -3,19 +3,19 @@ cmake_minimum_required(VERSION 3.2)
project(minizip C CXX)
add_compile_options(
- "-Wall"
+ "-Wall"
)
add_definitions(-DUSE_FILE32ZPI -DNOCRYPT)
set(
- SRC
- ioapi.c
- ioapi.h
- unzip.c
- unzip.h
- zip.c
- zip.h
+ SRC
+ ioapi.c
+ ioapi.h
+ unzip.c
+ unzip.h
+ zip.c
+ zip.h
)
add_library(minizip ${SRC})
diff --git a/3party/opening_hours/CMakeLists.txt b/3party/opening_hours/CMakeLists.txt
index eac362071c..c2efc8bb21 100644
--- a/3party/opening_hours/CMakeLists.txt
+++ b/3party/opening_hours/CMakeLists.txt
@@ -5,23 +5,23 @@ project(opening_hours C CXX)
include_directories(src ../../)
add_compile_options(
- "-Wall"
- "-Wno-unused-function"
- "-std=c++11"
+ "-Wall"
+ "-Wno-unused-function"
+ "-std=c++11"
)
set(
- SRC
- opening_hours.hpp
- opening_hours.cpp
- opening_hours_parsers.hpp
- opening_hours_parsers_terminals.hpp
- parse_opening_hours.hpp
- parse_opening_hours.cpp
- rules_evaluation_private.hpp
- rules_evaluation.hpp
- rules_evaluation.cpp
+ SRC
+ opening_hours.hpp
+ opening_hours.cpp
+ opening_hours_parsers.hpp
+ opening_hours_parsers_terminals.hpp
+ parse_opening_hours.hpp
+ parse_opening_hours.cpp
+ rules_evaluation_private.hpp
+ rules_evaluation.hpp
+ rules_evaluation.cpp
)
add_library(opening_hours ${SRC})
diff --git a/3party/opening_hours/opening_hours_tests/CMakeLists.txt b/3party/opening_hours/opening_hours_tests/CMakeLists.txt
index 3542e055c2..5f805e6ef4 100644
--- a/3party/opening_hours/opening_hours_tests/CMakeLists.txt
+++ b/3party/opening_hours/opening_hours_tests/CMakeLists.txt
@@ -4,8 +4,8 @@ include_directories(${PROJECT_SOURCE_DIR})
set(
- SRC
- opening_hours_tests.cpp
+ SRC
+ opening_hours_tests.cpp
)
add_executable(opening_hours_tests ${SRC})
diff --git a/3party/succinct/CMakeLists.txt b/3party/succinct/CMakeLists.txt
index fcfb913054..5bc4ffa5c8 100644
--- a/3party/succinct/CMakeLists.txt
+++ b/3party/succinct/CMakeLists.txt
@@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.2)
project(succinct C CXX)
add_compile_options(
- "-Wall"
- "-std=c++11"
+ "-Wall"
+ "-std=c++11"
)
add_definitions(-DLTC_NO_ROLC)
@@ -12,30 +12,30 @@ add_definitions(-DLTC_NO_ROLC)
include_directories(src/headers)
set(
- SRC
- bit_vector.hpp
- bp_vector.cpp
- bp_vector.hpp
- broadword.hpp
- cartesian_tree.hpp
- darray.hpp
- darray64.hpp
- elias_fano_compressed_list.hpp
- elias_fano_list.hpp
- elias_fano.hpp
- forward_enumerator.hpp
- gamma_bit_vector.hpp
- gamma_vector.hpp
- intrinsics.hpp
- mappable_vector.hpp
- mapper.hpp
- nibble_vector.hpp
- rs_bit_vector.cpp
- rs_bit_vector.hpp
- tables.hpp
- topk_vector.hpp
- util.hpp
- vbyte.hpp
+ SRC
+ bit_vector.hpp
+ bp_vector.cpp
+ bp_vector.hpp
+ broadword.hpp
+ cartesian_tree.hpp
+ darray.hpp
+ darray64.hpp
+ elias_fano_compressed_list.hpp
+ elias_fano_list.hpp
+ elias_fano.hpp
+ forward_enumerator.hpp
+ gamma_bit_vector.hpp
+ gamma_vector.hpp
+ intrinsics.hpp
+ mappable_vector.hpp
+ mapper.hpp
+ nibble_vector.hpp
+ rs_bit_vector.cpp
+ rs_bit_vector.hpp
+ tables.hpp
+ topk_vector.hpp
+ util.hpp
+ vbyte.hpp
)
add_library(succinct ${SRC})
diff --git a/3party/tomcrypt/CMakeLists.txt b/3party/tomcrypt/CMakeLists.txt
index f3c34bbcfc..5761bf2b67 100644
--- a/3party/tomcrypt/CMakeLists.txt
+++ b/3party/tomcrypt/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.2)
project(tomcrypt C CXX)
add_compile_options(
- "-Wall"
+ "-Wall"
)
add_definitions(-DLTC_NO_ROLC)
@@ -11,13 +11,13 @@ add_definitions(-DLTC_NO_ROLC)
include_directories(src/headers)
set(
- SRC
- src/hashes/sha2/sha256.c
- src/headers/tomcrypt.h
- src/headers/tomcrypt_misc.h
- src/misc/base64/base64_decode.c
- src/misc/base64/base64_encode.c
- src/misc/crypt/crypt_argchk.c
+ SRC
+ src/hashes/sha2/sha256.c
+ src/headers/tomcrypt.h
+ src/headers/tomcrypt_misc.h
+ src/misc/base64/base64_decode.c
+ src/misc/base64/base64_encode.c
+ src/misc/crypt/crypt_argchk.c
)
add_library(tomcrypt ${SRC})