diff options
author | ipriver <g1ran1q@gmail.com> | 2020-06-22 15:27:03 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-06 23:40:39 +0100 |
commit | bde36062b7a0bf621086e73a5d419cd8637e9e96 (patch) | |
tree | 509f8303b1f6e00cb1b4c44d88e5e7eb0093a369 /dep | |
parent | c776218cb5b0cc8f9f6d4d509cf6c36212eb38aa (diff) |
fixed indentation for cmake files
(cherry picked from commit a46d047f9466c6f16597755bb7c771a9d1a147f2)
Diffstat (limited to 'dep')
-rw-r--r-- | dep/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt index 2557505ac25..51253239615 100644 --- a/dep/CMakeLists.txt +++ b/dep/CMakeLists.txt @@ -10,7 +10,7 @@ add_subdirectory(threads) -if (SERVERS OR TOOLS) +if(SERVERS OR TOOLS) add_subdirectory(boost) add_subdirectory(process) add_subdirectory(zlib) @@ -25,7 +25,7 @@ if (SERVERS OR TOOLS) add_subdirectory(argon2) endif() -if (SERVERS) +if(SERVERS) add_subdirectory(mysql) add_subdirectory(readline) add_subdirectory(gsoap) @@ -34,6 +34,6 @@ if (SERVERS) add_subdirectory(protobuf) endif() -if (TOOLS) +if(TOOLS) add_subdirectory(CascLib) endif() |