mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-12-25 10:01:38 +08:00
Merge pull request #8 from srazi/master
Fix Windows CI and export symbols
This commit is contained in:
commit
a94c2a0631
20
appveyor.yml
20
appveyor.yml
@ -50,20 +50,24 @@ build_script:
|
|||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- echo "Call QMake..."
|
- echo "Call QMake..."
|
||||||
- qmake.exe ..\JKQtPlotterBuildAllExamples.pro
|
- qmake.exe CONFIG+=%CONFIGURATION% ..\JKQtPlotterBuildAllExamples.pro
|
||||||
- echo "Build..."
|
- echo "Build..."
|
||||||
- call %MAKETOOL%
|
- call %MAKETOOL%
|
||||||
- cd ..
|
- cd ..
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: build\lib\release\*.a
|
- path: build\staticlib\**\*.a
|
||||||
name: lib %QTVER%%QTABI%
|
name: staticlib %QTVER%%QTABI%
|
||||||
- path: build\lib\release\*.lib
|
- path: build\sharedlib\**\*.a
|
||||||
name: lib %QTVER%%QTABI%
|
name: sharedlib %QTVER%%QTABI%
|
||||||
- path: build\lib\release\*.dll
|
- path: build\staticlib\**\*.lib
|
||||||
|
name: staticlib %QTVER%%QTABI%
|
||||||
|
- path: build\sharedlib\**\*.lib
|
||||||
|
name: sharedlib %QTVER%%QTABI%
|
||||||
|
- path: build\sharedlib\**\*.dll
|
||||||
name: dll %QTVER%%QTABI%
|
name: dll %QTVER%%QTABI%
|
||||||
- path: build\test\**\*.exe
|
- path: build\examples\**\*.exe
|
||||||
name: Test %QTVER%%QTABI%
|
name: Examples %QTVER%%QTABI%
|
||||||
|
|
||||||
|
|
||||||
# # remote desktop connection on init
|
# # remote desktop connection on init
|
||||||
|
@ -4,4 +4,9 @@ CONFIG (debug, debug|release): TARGET = jkqtfastplotterlib_debug
|
|||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
CONFIG+=dll
|
CONFIG+=dll
|
||||||
|
|
||||||
|
win32 {
|
||||||
|
DEFINES += LIB_IN_DLL
|
||||||
|
DEFINES += LIB_EXPORT_LIBRARY
|
||||||
|
}
|
||||||
|
|
||||||
include(../lib/jkqtfastplotter.pri)
|
include(../lib/jkqtfastplotter.pri)
|
||||||
|
@ -4,4 +4,9 @@ CONFIG (debug, debug|release): TARGET = jkqtmathtextlib_debug
|
|||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
CONFIG+=dll
|
CONFIG+=dll
|
||||||
|
|
||||||
|
win32 {
|
||||||
|
DEFINES += LIB_IN_DLL
|
||||||
|
DEFINES += LIB_EXPORT_LIBRARY
|
||||||
|
}
|
||||||
|
|
||||||
include(../lib/jkqtmathtext.pri)
|
include(../lib/jkqtmathtext.pri)
|
||||||
|
@ -4,4 +4,9 @@ CONFIG (debug, debug|release): TARGET = jkqtplotterlib_debug
|
|||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
CONFIG += dll
|
CONFIG += dll
|
||||||
|
|
||||||
|
win32 {
|
||||||
|
DEFINES += LIB_IN_DLL
|
||||||
|
DEFINES += LIB_EXPORT_LIBRARY
|
||||||
|
}
|
||||||
|
|
||||||
include(../lib/jkqtplotter.pri)
|
include(../lib/jkqtplotter.pri)
|
||||||
|
Loading…
Reference in New Issue
Block a user