1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From: =?utf-8?q?Sandro_Knau=C3=9F?= <hefee@debian.org>
Date: Mon, 19 Apr 2021 18:54:56 +0200
Subject: Ignore the admin directory completely
Origin: debian
Last-Update: 2014-10-11
In the admin directory are only files for windows and mac.
There are files with no opensource license, so we removed the dir completely.
Last-Update: 2014-10-11
---
CMakeLists.txt | 3 ---
1 file changed, 3 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 460d15e..8fc7670 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -149,9 +149,6 @@ else()
endif()
add_subdirectory(src)
-if(IS_DIRECTORY ${CMAKE_SOURCE_DIR}/admin)
- add_subdirectory(admin)
-endif(IS_DIRECTORY ${CMAKE_SOURCE_DIR}/admin)
if(BUILD_SHELL_INTEGRATION)
add_subdirectory(shell_integration)
|