Updated version for PR
All checks were successful
JCS-Prod/RSE-Model/pipeline/pr-master This commit looks good

This commit is contained in:
JackCarterSmith 2022-09-07 20:30:45 +02:00
parent f784d1b8aa
commit 89cf729b7c
Signed by: JackCarterSmith
GPG Key ID: 832E52F4E23F8F24
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ if(DEFINED ENV{CI}) # Jenkins CI integration mode
project(rse-model VERSION $ENV{CI_VERSION}.$ENV{CI_BUILD_NUMBER} DESCRIPTION "RogueSquadron Extractor - Model" LANGUAGES C)
set(RSE_MODEL_NAME $ENV{CI_OUTPUT_NAME})
else() # Standalone project mode, should not be used for release.
project(rse-model VERSION 2.1.0 DESCRIPTION "RogueSquadron Extractor - Model" LANGUAGES C)
project(rse-model VERSION 2.2.0 DESCRIPTION "RogueSquadron Extractor - Model" LANGUAGES C)
set(RSE_MODEL_NAME RSEModel)
endif()
set(RSP_MODEL_LIB_NAME RSPModel${PROJECT_VERSION_MAJOR}${PROJECT_VERSION_MINOR})

2
Jenkinsfile vendored
View File

@ -5,7 +5,7 @@ pipeline {
}
environment {
CI_OUTPUT_NAME = "RSEModel"
CI_VERSION = "2.1.1"
CI_VERSION = "2.2.0"
CI_BUILD_NUMBER = "$BUILD_NUMBER"
}
stages {

View File

@ -10,7 +10,7 @@
#include <stdlib.h>
#include <stdio.h>
#if defined(_WIN32)
#include <Windows.h>
#include <windows.h>
#include <libloaderapi.h>
#else
#include <dlfcn.h>