Skip to content

Commit

Permalink
chore: bumped websocketpp to 0.8.3 (fixes C++20-related errors)
Browse files Browse the repository at this point in the history
fix: missing `-lpthread` flag on linux
  • Loading branch information
PoetaKodu committed Oct 16, 2022
1 parent a58ca09 commit 575d9d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpackage.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"name": "VM",
"filters": {
"system:windows": { "defines": [ "PACC_SYSTEM_WINDOWS" ] },
"system:linux": { "defines": [ "PACC_SYSTEM_LINUX" ] },
"system:macosx": { "defines": [ "PACC_SYSTEM_MACOSX" ] }
"system:linux": { "defines": [ "PACC_SYSTEM_LINUX" ], "linkerOptions": ["-pthread"] },
"system:macosx": { "defines": [ "PACC_SYSTEM_MACOSX" ], "linkerOptions": ["-pthread"] }
},
"language": "C++20",
"type": "app",
Expand All @@ -54,7 +54,7 @@
"self:Parser",
"fmt@8.0.1",
"json@3.9.1",
"websocketpp@0.8.2"
"websocketpp@0.8.3"
]
}
]
Expand Down

0 comments on commit 575d9d8

Please sign in to comment.