File: 0002-Remove-spaces-in-CMake-project-name.patch

package info (click to toggle)
sqlitebrowser 3.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,884 kB
  • ctags: 12,349
  • sloc: cpp: 79,506; xml: 45; python: 27; sh: 7; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 523 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
From: Arto Jantunen <viiru@debian.org>
Date: Thu, 10 Nov 2016 22:36:29 +0200
Subject: Remove spaces in CMake project name

---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 95e3b9cf9c86..7255419e8e01 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-project("DB Browser for SQLite")
+project(sqlitebrowser)
 cmake_minimum_required(VERSION 2.8.7)
 
 set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" "${CMAKE_MODULE_PATH}")