Skip to content

Commit

Permalink
update cmake presets
Browse files Browse the repository at this point in the history
  • Loading branch information
ardera committed Mar 11, 2024
1 parent 1cbfa6d commit 6d79468
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,32 @@
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"ENABLE_OPENGL": true
"ENABLE_OPENGL": true,
"BUILD_GSTREAMER_AUDIO_PLAYER_PLUGIN": true
}
},
{
"name": "cross-aarch64-default",
"displayName": "OpenGL AArch64 cross-build",
"description": "Sets Ninja generator, build and install directory",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"inherits": "default",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_C_COMPILER_TARGET": "aarch64-linux-gnu"
}
},
{
"name": "cross-armhf-default",
"displayName": "OpenGL armhf cross-build",
"description": "Sets Ninja generator, build and install directory",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"inherits": "default",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_C_COMPILER_TARGET": "arm-linux-gnueabihf"
}
}
]
Expand Down

0 comments on commit 6d79468

Please sign in to comment.