Skip to content

Commit 256ca12

Browse files
milianwJakeHillion
authored andcommitted
Minor: fix indentation for FetchContent calls
1 parent 1317aa3 commit 256ca12

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

CMakeLists.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ find_package(gflags REQUIRED)
3434

3535
### tomlplusplus (for configuration files)
3636
FetchContent_Declare(
37-
tomlplusplus
38-
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
39-
GIT_TAG 4b166b69f28e70a416a1a04a98f365d2aeb90de8 # v3.2.0
40-
GIT_PROGRESS TRUE
37+
tomlplusplus
38+
GIT_REPOSITORY https://github.com/marzer/tomlplusplus.git
39+
GIT_TAG 4b166b69f28e70a416a1a04a98f365d2aeb90de8 # v3.2.0
40+
GIT_PROGRESS TRUE
4141
)
4242
FetchContent_MakeAvailable(tomlplusplus)
4343

4444
### glog
4545
FetchContent_Declare(
46-
glog
47-
GIT_REPOSITORY https://github.com/google/glog.git
48-
GIT_TAG 96a2f23dca4cc7180821ca5f32e526314395d26a
49-
GIT_PROGRESS TRUE
46+
glog
47+
GIT_REPOSITORY https://github.com/google/glog.git
48+
GIT_TAG 96a2f23dca4cc7180821ca5f32e526314395d26a
49+
GIT_PROGRESS TRUE
5050
)
5151
FetchContent_MakeAvailable(glog)
5252

@@ -71,10 +71,10 @@ FetchContent_MakeAvailable(googletest)
7171

7272
### rocksdb
7373
FetchContent_Declare(
74-
rocksdb
75-
GIT_REPOSITORY https://github.com/facebook/rocksdb.git
76-
GIT_TAG f32521662acf3352397d438b732144c7813bbbec # v8.5.3
77-
GIT_PROGRESS TRUE
74+
rocksdb
75+
GIT_REPOSITORY https://github.com/facebook/rocksdb.git
76+
GIT_TAG f32521662acf3352397d438b732144c7813bbbec # v8.5.3
77+
GIT_PROGRESS TRUE
7878
)
7979
FetchContent_Populate(rocksdb)
8080
add_custom_target(librocksdb ALL
@@ -90,10 +90,10 @@ include_directories(SYSTEM "${rocksdb_SOURCE_DIR}/include")
9090
### folly
9191
### use folly as a header only library. some features won't be supported.
9292
FetchContent_Declare(
93-
folly
94-
GIT_REPOSITORY https://github.com/JakeHillion/folly.git
95-
GIT_TAG 8db54418e3ccdd97619ac8b69bb3702f82bb0f66
96-
GIT_PROGRESS TRUE
93+
folly
94+
GIT_REPOSITORY https://github.com/JakeHillion/folly.git
95+
GIT_TAG 8db54418e3ccdd97619ac8b69bb3702f82bb0f66
96+
GIT_PROGRESS TRUE
9797
)
9898
FetchContent_Populate(folly)
9999

0 commit comments

Comments
 (0)