Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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