Skip to content

Commit

Permalink
Fix style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
weisJ committed Dec 17, 2023
1 parent 736d1b6 commit c96d5f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion macos/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ library {
}
linkTask.configure {
linkerArgs.addAll(
"-lobjc", "-mmacosx-version-min=$minOs",
"-lobjc",
"-mmacosx-version-min=$minOs"
// "-framework", "AppKit",
)
}
Expand Down
7 changes: 5 additions & 2 deletions windows/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ library {
when (it) {
is Gcc, is Clang -> listOf(
"--std=c++17",
"-Wall", "-Wextra", "-pedantic",
"-Wno-language-extension-token", "-Wno-ignored-attributes"
"-Wall",
"-Wextra",
"-pedantic",
"-Wno-language-extension-token",
"-Wno-ignored-attributes"
)
is VisualCpp -> listOf("/std:c++17", "/EHsc", "/W4", "/permissive", "/WX")
else -> emptyList()
Expand Down

0 comments on commit c96d5f8

Please sign in to comment.