-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
313420c
commit 9b75114
Showing
6 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
sources: | ||
"6.2.1": | ||
url: "https://github.com/MehdiChinoune/qwt/archive/refs/tags/6.2.0.tar.gz" | ||
sha256: "3e9632a9be6a883db5c496e42ce74cbbf8da02cc3328faa89e2c43e434a2eb76" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
from conan import ConanFile | ||
from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps | ||
|
||
required_conan_version = ">=1.50" | ||
|
||
class QwtConan(ConanFile): | ||
name = "qwt" | ||
license = "LGPL-2.1-or-later" | ||
url = "https://github.com/conan-io/conan-center-index" | ||
homepage = "https://qwt.sourceforge.io/" | ||
topics = ("conan", "archive", "compression") | ||
description = ( | ||
"The Qwt library contains GUI Components and utility classes which are primarily useful for programs " | ||
"with a technical background. Beside a framework for 2D plots it provides scales, sliders, dials, compasses, " | ||
"thermometers, wheels and knobs to control or display values, arrays, or ranges of type double." | ||
) | ||
settings = "os", "compiler", "build_type", "arch" | ||
options = { | ||
"shared": [True, False], | ||
"fPIC": [True, False], | ||
"plot": [True, False], | ||
"widgets": [True, False], | ||
"svg": [True, False], | ||
"opengl": [True, False], | ||
"designer": [True, False], | ||
"polar": [True, False] | ||
} | ||
default_options = { | ||
"shared": False, | ||
"fPIC": True, | ||
"plot": False, | ||
"widgets": False, | ||
"svg": True, | ||
"opengl": False, | ||
"designer": False, | ||
"polar": False, | ||
"qt:qtsvg": True | ||
|
||
} | ||
|
||
def build_requirements(self): | ||
if self.settings.os == "Windows" and self.settings.compiler == "Visual Studio": | ||
self.build_requires("jom/1.1.3") | ||
|
||
def config_options(self): | ||
if self.settings.os == "Windows": | ||
del self.options.fPIC | ||
|
||
def configure(self): | ||
if self.options.shared: | ||
del self.options.fPIC | ||
|
||
def requirements(self): | ||
self.requires("qt/5.15.2") | ||
|
||
def _source_subfolder(self): | ||
return "source_subfolder" | ||
|
||
@property | ||
def _build_subfolder(self): | ||
return "build_subfolder" | ||
|
||
def source(self): | ||
tools.get(**self.conan_data["sources"][self.version], strip_root=True, destination=self._source_subfolder) | ||
|
||
def generate(self): | ||
tc = CMakeToolchain(self) | ||
|
||
tc.variables["QWT_PLOT"] = "ON" if self.options.plot else "OFF" | ||
tc.variables["QWT_WIDGETS"] = "ON" if self.options.widgets else "OFF" | ||
tc.variables["QWT_SVG"] = "ON" if self.options.svg else "OFF" | ||
tc.variables["QWT_OPENGL"] = "ON" if self.options.opengl else "OFF" | ||
tc.variables["QWT_DESIGNER"] = "ON" if self.options.designer else "OFF" | ||
tc.variables["QWT_POLAR"] = "ON" if self.options.polar else "OFF" | ||
|
||
tc.generate() | ||
|
||
deps = CMakeDeps(self) | ||
deps.generate() | ||
|
||
def build(self): | ||
cmake = CMake(self) | ||
cmake.configure() | ||
cmake.build() | ||
|
||
def package(self): | ||
cmake = CMake(self) | ||
cmake.install() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
project(PackageTest CXX) | ||
|
||
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) | ||
conan_basic_setup(TARGETS) | ||
|
||
add_executable(example example.cpp) | ||
# Must compile with "-fPIC" since Qt was built with -reduce-relocations. | ||
target_compile_options(example PRIVATE -fPIC) | ||
target_link_libraries(example CONAN_PKG::qt CONAN_PKG::qwt) | ||
set_property(TARGET example PROPERTY CXX_STANDARD 11) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from conans import ConanFile, CMake, tools | ||
import os | ||
|
||
|
||
class QwtTestConan(ConanFile): | ||
settings = "os", "compiler", "build_type", "arch" | ||
generators = "cmake" | ||
|
||
def build(self): | ||
cmake = CMake(self) | ||
cmake.configure() | ||
cmake.build() | ||
|
||
def test(self): | ||
if not tools.cross_building(self): | ||
bin_path = os.path.join("bin", "example") | ||
self.run(bin_path, run_environment=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#include <QDebug> | ||
#include <QDateTime> | ||
|
||
#include <qwt_date.h> | ||
|
||
int main() | ||
{ | ||
qDebug() << QwtDate::toString(QwtDate::toDateTime(10), "MMM dd hh:mm ", QwtDate::FirstThursday); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ versions: | |
folder: "all" | ||
"6.2.0": | ||
folder: "all" | ||
"6.2.1": | ||
folder: "6.2.1" |