Skip to content

Commit

Permalink
Testing ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chukobyte committed Jul 30, 2024
1 parent 8fd0ec9 commit 97b68eb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macosx-clang-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: macosx-clang-build

on:
push:
branches: [ main ]
branches: [ main, dev ]
pull_request:
branches: [ main ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-gcc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ubuntu-gcc-build

on:
push:
branches: [ main ]
branches: [ main, dev ]
pull_request:
branches: [ main ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-mingw-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: windows-mingw-build

on:
push:
branches: [ main ]
branches: [ main, dev ]
pull_request:
branches: [ main ]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-msvc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: windows-msvc-build

on:
push:
branches: [ main ]
branches: [ main, dev ]
pull_request:
branches: [ main ]

Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ project(seika C)
option(IS_CI_BUILD "" OFF)
option(SEIKA_STATIC_LIB "Make seika and dependent libs static" OFF)

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})

if (CMAKE_C_COMPILER_ID STREQUAL "MSVC")
list(APPEND flags "/W3" "/Zc:preprocessor")
elseif (APPLE)
Expand Down

0 comments on commit 97b68eb

Please sign in to comment.