From 6a9d96c208d59fec6bac694f8cd2d28005dd3aa4 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 30 Oct 2019 04:58:59 +0100 Subject: [PATCH] Remove spaces betweeen `if` and `(` in root CMake file. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72ed4a3..df36c8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,11 +84,11 @@ add_subdirectory(src/cli) add_subdirectory(pkg-config) add_subdirectory(cmake) -if (WITH_MAN) +if(WITH_MAN) add_subdirectory(man) endif() -if (WITH_MOZILLA) +if(WITH_MOZILLA) add_subdirectory(browser-plugins/webextension/native-wrapper) endif()