Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
release version 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
msrd0 committed Apr 9, 2021
1 parent ff87373 commit d3610a2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions QtWebApp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.1)
project(QtWebApp CXX)

set(qtwebapp_MAJOR 1)
set(qtwebapp_MINOR 7)
set(qtwebapp_PATCH 11)
set(qtwebapp_MINOR 8)
set(qtwebapp_PATCH 3)
set(qtwebapp_VERSION ${qtwebapp_MAJOR}.${qtwebapp_MINOR}.${qtwebapp_PATCH})

find_package(Qt5 REQUIRED COMPONENTS Core Network)
Expand Down
19 changes: 9 additions & 10 deletions QtWebApp/qtwebappglobal.h.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#pragma once

#include <sys/types.h>

#include <QtGlobal>
#include <QVariant>
#include <QtGlobal>
#include <sys/types.h>

#define QTWEBAPP_MAJOR @qtwebapp_MAJOR@
#define QTWEBAPP_MINOR @qtwebapp_MINOR@
Expand All @@ -12,17 +11,17 @@
#define QTWEBAPP_VERSION_STR "@qtwebapp_VERSION@"

#ifdef CMAKE_QTWEBAPP_SO
# define QTWEBAPP_EXPORT Q_DECL_EXPORT
#define QTWEBAPP_EXPORT Q_DECL_EXPORT
#else
# define QTWEBAPP_EXPORT Q_DECL_IMPORT
#define QTWEBAPP_EXPORT Q_DECL_IMPORT
#endif

namespace qtwebapp {

/// The version of QtWebApp.
QTWEBAPP_EXPORT const char* getQtWebAppLibVersion();
/// The version of QtWebApp.
QTWEBAPP_EXPORT const char *getQtWebAppLibVersion();

/// Parses the given number by respecting its suffix.
QTWEBAPP_EXPORT int parseNum(const QVariant &v, int base = 1e3);
/// Parses the given number by respecting its suffix.
QTWEBAPP_EXPORT int parseNum(const QVariant &v, int base = 1e3);

}
} // namespace qtwebapp

0 comments on commit d3610a2

Please sign in to comment.