Skip to content

Commit

Permalink
Sync1 (#1)
Browse files Browse the repository at this point in the history
* Version 5.2.0 : sortie du projet GUIToolkits.

* Version 5.2.0 du 23/06/23. Sortie de GUIToolkits. Les includes (FindQwt.cmake) sont remplacés par des find_package/dependency (Qwt).

* New CI workflows

* Set path to FindQwt.cmake file

* Path to FindQwt.cmake added to config during install

---------

Co-authored-by: Charles PIGNEROL <>
  • Loading branch information
lelandaisb authored Jul 17, 2023
1 parent 5251405 commit 9064fb7
Show file tree
Hide file tree
Showing 13 changed files with 72 additions and 347 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/cmake-ci.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Make release

on:
push:
tags:
- '*'

jobs:
call:
name: Call check version CI
uses: LIHPC-Computational-Geometry/lihpccg-ci/.github/workflows/make-release-reusable.yml@main
9 changes: 5 additions & 4 deletions .github/workflows/spack-ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: Spack CI

on:
workflow_dispatch:
push:
branches: [ main ]
branches:
- '**'
pull_request:
branches: [ main ]
# Allows you to run this workflow manually
workflow_dispatch:

jobs:
call:
name: Call Spack reusable workflow
name: Call Spack CI
uses: LIHPC-Computational-Geometry/lihpccg-ci/.github/workflows/spack-reusable.yml@main
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ cmake_minimum_required(VERSION 3.12)
project (QwtCharts CXX)

include (GNUInstallDirs)

find_package (GUIToolkitsVariables)

include (cmake/version.cmake)
include (cmake/common.cmake)
include (${GUIToolkitsVariables_CMAKE_DIR}/common.cmake)


set (QwtCharts_VERSION ${QWT_CHARTS_VERSION})
Expand Down
156 changes: 0 additions & 156 deletions cmake/FindQwt.cmake

This file was deleted.

33 changes: 0 additions & 33 deletions cmake/common.cmake

This file was deleted.

36 changes: 0 additions & 36 deletions cmake/organization.cmake

This file was deleted.

6 changes: 3 additions & 3 deletions cmake/version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# version.cmake : version du projet
#

set (QWT_CHARTS_MAJOR_VERSION "4")
set (QWT_CHARTS_MINOR_VERSION "4")
set (QWT_CHARTS_RELEASE_VERSION "13")
set (QWT_CHARTS_MAJOR_VERSION "5")
set (QWT_CHARTS_MINOR_VERSION "2")
set (QWT_CHARTS_RELEASE_VERSION "0")
set (QWT_CHARTS_VERSION ${QWT_CHARTS_MAJOR_VERSION}.${QWT_CHARTS_MINOR_VERSION}.${QWT_CHARTS_RELEASE_VERSION})


83 changes: 0 additions & 83 deletions cmake/workarounds.cmake

This file was deleted.

Loading

0 comments on commit 9064fb7

Please sign in to comment.