1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 13:41:13 +02:00

be prepared for git flow too

This commit is contained in:
ClausKlein 2022-03-30 07:28:59 +02:00
parent aa02116995
commit 4cc7653883
7 changed files with 13 additions and 1 deletions

View file

@ -3,10 +3,12 @@ name: Install
on:
push:
branches:
- develop
- master
- main
pull_request:
branches:
- develop
- master
- main

View file

@ -3,10 +3,12 @@ name: MacOS
on:
push:
branches:
- develop
- master
- main
pull_request:
branches:
- develop
- master
- main

View file

@ -3,10 +3,12 @@ name: Standalone
on:
push:
branches:
- develop
- master
- main
pull_request:
branches:
- develop
- master
- main

View file

@ -3,10 +3,12 @@ name: Style
on:
push:
branches:
- develop
- master
- main
pull_request:
branches:
- develop
- master
- main

View file

@ -3,10 +3,12 @@ name: Ubuntu
on:
push:
branches:
- develop
- master
- main
pull_request:
branches:
- develop
- master
- main

View file

@ -3,10 +3,12 @@ name: Windows
on:
push:
branches:
- develop
- master
- main
pull_request:
branches:
- develop
- master
- main

View file

@ -27,7 +27,7 @@ add_executable(${PROJECT_NAME} ${sources})
# enable pedantic compiler warnings
include(../cmake/WarningsAsErrors.cmake)
# TODO(CK): why is this needed on CI?
# TODO(CK): why is this name used on CI?
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME Greeter)
target_link_libraries(${PROJECT_NAME} Greeter::Greeter cxxopts)