mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
Build multiple packet versions on AppVeyor for Windows (#14)
* Move to PowerShell script for Windows build * Allow CMake to override struct version * PACKET_VERSION option * Rename CNPROTO_CUSTOM to CNPROTO_OVERRIDE Co-authored-by: Raymonf <Raymonf@users.noreply.github.com>
This commit is contained in:
parent
24be117e28
commit
0041da795a
@ -3,6 +3,13 @@ project(OpenFusion)
|
|||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
|
||||||
|
# OpenFusion supports multiple packet/struct versions
|
||||||
|
# 0104 is the default version to build which can be changed
|
||||||
|
# For example: cmake -B build -DPACKET_VERSION=0728
|
||||||
|
OPTION(PACKET_VERSION "The packet version to build" "0104")
|
||||||
|
|
||||||
|
ADD_DEFINITIONS(-DCNPROTO_OVERRIDE -DCNPROTO_VERSION_${PACKET_VERSION})
|
||||||
|
|
||||||
# Disallow in-source builds
|
# Disallow in-source builds
|
||||||
if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
|
if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
|
||||||
message(FATAL_ERROR "In-source builds not allowed. Please refer to the wiki for more information. Please remove the CMakeFiles folder and the CMakeCache.txt file.")
|
message(FATAL_ERROR "In-source builds not allowed. Please refer to the wiki for more information. Please remove the CMakeFiles folder and the CMakeCache.txt file.")
|
||||||
|
38
appveyor.yml
38
appveyor.yml
@ -25,12 +25,40 @@ for:
|
|||||||
type: zip
|
type: zip
|
||||||
-
|
-
|
||||||
matrix:
|
matrix:
|
||||||
only:
|
only:
|
||||||
- image: Visual Studio 2019
|
- image: Visual Studio 2019
|
||||||
before_build:
|
|
||||||
- cmake -B build
|
|
||||||
build_script:
|
build_script:
|
||||||
- msbuild build/OpenFusion.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
- ps: |
|
||||||
|
$versions = "0104", "0728"
|
||||||
|
$configurations = "Release", "Debug"
|
||||||
|
|
||||||
|
# AppVeyor uses VS2019 Community
|
||||||
|
$vsPath = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community"
|
||||||
|
|
||||||
|
Import-Module "$vsPath\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
|
||||||
|
Enter-VsDevShell -VsInstallPath $vsPath -SkipAutomaticLocation
|
||||||
|
|
||||||
|
foreach ($version in $versions) {
|
||||||
|
if (Test-Path -LiteralPath "build") {
|
||||||
|
Remove-Item "build" -Recurse
|
||||||
|
Write-Output "Deleted existing build folder"
|
||||||
|
}
|
||||||
|
Invoke-Expression "cmake -B build -DPACKET_VERSION=$version"
|
||||||
|
if ($LASTEXITCODE -ne "0") {
|
||||||
|
Write-Error "cmake generation failed for version $version" -ErrorAction Stop
|
||||||
|
}
|
||||||
|
Write-Output "Generated build files for version $version"
|
||||||
|
|
||||||
|
foreach ($configuration in $configurations) {
|
||||||
|
Write-Output "Building version $version $configuration"
|
||||||
|
Invoke-Expression "msbuild build\OpenFusion.sln /p:Configuration=$configuration"
|
||||||
|
if ($LASTEXITCODE -ne "0") {
|
||||||
|
Write-Error "msbuild build failed for version $version" -ErrorAction Stop
|
||||||
|
}
|
||||||
|
Rename-Item -Path "bin/$configuration" -newName "$version-$configuration"
|
||||||
|
Write-Output "Built version $version $configuration"
|
||||||
|
}
|
||||||
|
}
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: bin
|
- path: bin
|
||||||
name: windows-vs2019-bin-x64
|
name: windows-vs2019-bin-x64
|
||||||
|
@ -6,19 +6,19 @@
|
|||||||
#define _CNS_HPP
|
#define _CNS_HPP
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
// codecvt_* is deprecated in C++17 and MSVC will throw an annoying warning because of that.
|
// codecvt_* is deprecated in C++17 and MSVC will throw an annoying warning because of that.
|
||||||
// Defining this before anything else to silence it.
|
// Defining this before anything else to silence it.
|
||||||
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#ifndef _MSC_VER
|
#ifndef _MSC_VER
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#else
|
#else
|
||||||
// Can't use this in MSVC.
|
// Can't use this in MSVC.
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#endif
|
#endif
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <string>
|
#include <string>
|
||||||
@ -31,8 +31,13 @@ std::string U16toU8(char16_t* src);
|
|||||||
int U8toU16(std::string src, char16_t* des); // returns number of char16_t that was written at des
|
int U8toU16(std::string src, char16_t* des); // returns number of char16_t that was written at des
|
||||||
uint64_t getTime();
|
uint64_t getTime();
|
||||||
|
|
||||||
//#define CNPROTO_VERSION_0728
|
// The CNPROTO_OVERRIDE definition is defined by cmake if you use it.
|
||||||
#define CNPROTO_VERSION_0104
|
// If you don't use cmake, feel free to comment this out and change it around.
|
||||||
|
// Otherwise, use the PACKET_VERSION option (e.g. -DPACKET_VERSION=0104 in the cmake command) to change it.
|
||||||
|
#if !defined(CNPROTO_OVERRIDE)
|
||||||
|
//#define CNPROTO_VERSION_0728
|
||||||
|
#define CNPROTO_VERSION_0104
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CNPROTO_VERSION_0104)
|
#if defined(CNPROTO_VERSION_0104)
|
||||||
#include "structs/0104.hpp"
|
#include "structs/0104.hpp"
|
||||||
|
Loading…
Reference in New Issue
Block a user