From eb9c2ce39a613df831607afdf6115eb28bcf1e9a Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Sun, 15 Dec 2019 03:42:02 +0300 Subject: [PATCH] Split build types by folders for GCC. --- Telegram/CMakeLists.txt | 2 ++ Telegram/configure.py | 8 +++++++- cmake | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Telegram/CMakeLists.txt b/Telegram/CMakeLists.txt index f24c9f4a0..55be51a5e 100644 --- a/Telegram/CMakeLists.txt +++ b/Telegram/CMakeLists.txt @@ -1112,6 +1112,8 @@ PRIVATE if (${CMAKE_GENERATOR} MATCHES "(Visual Studio|Xcode|Ninja)") set(output_folder ${CMAKE_BINARY_DIR}) +elseif((${CMAKE_GENERATOR} MATCHES "(Unix Makefiles)") AND DESKTOP_APP_SPECIAL_TARGET STREQUAL "") + set(output_folder ${CMAKE_BINARY_DIR}/bin) else() set(output_folder ${CMAKE_BINARY_DIR}/$,Debug,Release>) endif() diff --git a/Telegram/configure.py b/Telegram/configure.py index c97b60e9f..f54118584 100644 --- a/Telegram/configure.py +++ b/Telegram/configure.py @@ -27,6 +27,7 @@ if sys.platform == 'win32' and not 'COMSPEC' in os.environ: executePath = os.getcwd() scriptPath = os.path.dirname(os.path.realpath(__file__)) +scriptName = os.path.basename(scriptPath) arguments = sys.argv[1:] @@ -50,5 +51,10 @@ if officialTarget != '': arguments.append('-DTDESKTOP_API_ID=' + apiIdMatch.group(1)) elif apiHashMatch: arguments.append('-DTDESKTOP_API_HASH=' + apiHashMatch.group(1)) + finish(run_cmake.run(scriptName, arguments)) -finish(run_cmake.run(os.path.basename(scriptPath), arguments)) +if 'linux' in sys.platform: + debugCode = run_cmake.run(scriptName, arguments, "Debug") + finish(debugCode if debugCode else run_cmake.run(scriptName, arguments, "Release")) +else: + finish(run_cmake.run(scriptName, arguments)) diff --git a/cmake b/cmake index 8776c5c26..1dd11ff72 160000 --- a/cmake +++ b/cmake @@ -1 +1 @@ -Subproject commit 8776c5c26ea2087da67a4f47d8393727d6572967 +Subproject commit 1dd11ff72a19f35b5d1bd45e0397e07d09b0a9fb