From 5a339ea9d066aae1f5138d5e0abcef583fc7fee4 Mon Sep 17 00:00:00 2001 From: Martin Kleusberg Date: Thu, 12 Jul 2018 20:44:02 +0200 Subject: [PATCH] Fix cmake build on Windows See issue #1471. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19b8529c..08da4247 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ if (POLICY CMP0025) endif () if(WIN32 AND MSVC) - project("DB Browser for SQLite") + set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "DB Browser for SQLite") if(CMAKE_CL_64) # Paths for 64-bit windows builds set(OPENSSL_PATH "C:/dev/OpenSSL-Win64")