1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

fix indentation

This commit is contained in:
Andrey Filipenkov 2023-02-25 10:15:20 +03:00
parent 970bd6ed34
commit 2a28109f2d
2 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,8 @@ if(TARGET fuzzylite::fuzzylite AND MSVC)
endif()
if(NOT fuzzylite_FOUND)
set(FL_BUILD_BINARY OFF CACHE BOOL "")
set(FL_BUILD_SHARED OFF CACHE BOOL "")
set(FL_BUILD_BINARY OFF CACHE BOOL "")
set(FL_BUILD_SHARED OFF CACHE BOOL "")
set(FL_BUILD_TESTS OFF CACHE BOOL "")
if(ANDROID)
set(FL_BACKTRACE OFF CACHE BOOL "" FORCE)

View File

@ -116,6 +116,6 @@ public:
#ifdef VCMI_ANDROID
static void create();
#elif defined(SINGLE_PROCESS_APP)
static void create(boost::condition_variable * cond, const std::vector<std::string> & args);
static void create(boost::condition_variable * cond, const std::vector<std::string> & args);
#endif
};