Skip to content

Commit

Permalink
Create c-cpp.yml (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
kingofthebongo2008 authored Nov 4, 2023
2 parents 17d421d + 47f4ffc commit 69a4dcc
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: C/C++ CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: self-hosted

steps:
- uses: actions/checkout@v3
- name: msbuild
shell: cmd
run: msbuild wavelet_spline\projects\wavelet_spline.sln

6 changes: 3 additions & 3 deletions wavelet_spline/projects/wavelet_spline.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ProjectGuid>{C281AEF9-02A7-4ED8-BDD4-E995BD3F41B2}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>hill_climbing</RootNamespace>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
Expand All @@ -27,7 +27,7 @@
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
Expand All @@ -41,7 +41,7 @@
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
<PlatformToolset>v143</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Expand Down
3 changes: 2 additions & 1 deletion wavelet_spline/src/precompiled.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

#include "targetver.h"

#include <stdio.h>
#include <cstdio>
#include <tchar.h>
#include <algorithm>



Expand Down

0 comments on commit 69a4dcc

Please sign in to comment.