mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-13 21:13:31 +08:00
Only use Ninja to build on Windows (#7327)
* Only use Ninja for Windows and Linux * Use make on Linux for now * Update ChangeLog
This commit is contained in:
parent
668c3193e7
commit
831ee44eb1
@ -5,7 +5,6 @@
|
||||
"name": "base",
|
||||
"hidden": true,
|
||||
"binaryDir": "${sourceDir}/build",
|
||||
"generator": "Ninja",
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
||||
@ -15,6 +14,7 @@
|
||||
"name": "windows",
|
||||
"displayName": "Windows",
|
||||
"inherits": "base",
|
||||
"generator": "Ninja",
|
||||
"cacheVariables": {
|
||||
"CMAKE_C_COMPILER": "cl.exe",
|
||||
"CMAKE_CXX_COMPILER": "cl.exe"
|
||||
@ -31,12 +31,14 @@
|
||||
{
|
||||
"name": "linux",
|
||||
"displayName": "Linux",
|
||||
"inherits": "base"
|
||||
"inherits": "base",
|
||||
"generator": "Unix Makefiles"
|
||||
},
|
||||
{
|
||||
"name": "macos",
|
||||
"displayName": "macOS",
|
||||
"inherits": "base"
|
||||
"inherits": "base",
|
||||
"generator": "Unix Makefiles"
|
||||
}
|
||||
],
|
||||
"buildPresets": [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user