Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
From 45ec86156819c0872d023b05001682a8d2d2dc25 Mon Sep 17 00:00:00 2001
|
||||
From: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
|
||||
Date: Sat, 6 Apr 2013 16:54:25 +0200
|
||||
Subject: [PATCH] fix Qt4 package error in CMakeLists.txt
|
||||
|
||||
Avoid checking for uic executable by cmake as it results configure
|
||||
time error if QtGui isn't installed.
|
||||
|
||||
Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index adb65e9..81854b1 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -52,7 +52,7 @@ IF (Qt5Core_FOUND)
|
||||
ELSE()
|
||||
MESSAGE ("Qt5 not found, searching for Qt4")
|
||||
# Find Qt4
|
||||
- FIND_PACKAGE( Qt4 REQUIRED )
|
||||
+ FIND_PACKAGE( Qt4 COMPONENTS QtCore REQUIRED )
|
||||
|
||||
# Include the cmake file needed to use qt4
|
||||
INCLUDE( ${QT_USE_FILE} )
|
||||
--
|
||||
2.1.1
|
||||
|
||||
8
deprecated/firmware/buildroot/package/qjson/Config.in
Normal file
8
deprecated/firmware/buildroot/package/qjson/Config.in
Normal file
@@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_QJSON
|
||||
bool "qjson"
|
||||
depends on BR2_PACKAGE_QT || BR2_PACKAGE_QT5
|
||||
help
|
||||
QJson is a Qt-based library that maps JSON data to
|
||||
QVariant objects and vice versa.
|
||||
|
||||
http://qjson.sourceforge.net
|
||||
16
deprecated/firmware/buildroot/package/qjson/qjson.mk
Normal file
16
deprecated/firmware/buildroot/package/qjson/qjson.mk
Normal file
@@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# qjson
|
||||
#
|
||||
################################################################################
|
||||
|
||||
QJSON_VERSION = ba273682a9d33a7b3090e74f4742b5f3bf6c9b02
|
||||
QJSON_SITE = $(call github,flavio,qjson,$(QJSON_VERSION))
|
||||
QJSON_INSTALL_STAGING = YES
|
||||
QJSON_DEPENDENCIES = \
|
||||
$(if $(BR2_PACKAGE_QT),qt) \
|
||||
$(if $(BR2_PACKAGE_QT5),qt5base)
|
||||
QJSON_LICENSE = LGPLv2.1
|
||||
QJSON_LICENSE_FILES = COPYING.lib
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user