Consolidate into a single CMake folder (#469)

* Consolidate into a single CMake folder'

* Remove extra path thing
This commit is contained in:
Christian Semmler 2025-07-01 15:46:57 -07:00 committed by GitHub
parent 7b06ee5ae6
commit 1f1787b5ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2 additions and 11 deletions

View File

@ -13,7 +13,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
include(CheckCXXSourceCompiles) include(CheckCXXSourceCompiles)
include(CMakeDependentOption) include(CMakeDependentOption)
include(CMakePushCheckState) include(CMakePushCheckState)
include(cmake/detectcpu.cmake) include(CMake/detectcpu.cmake)
DetectTargetCPUArchitectures(ISLE_CPUS) DetectTargetCPUArchitectures(ISLE_CPUS)

View File

@ -1,12 +1,9 @@
{ {
"id": "org.legoisland.Isle", "id": "org.legoisland.Isle",
"runtime": "org.kde.Platform", "runtime": "org.kde.Platform",
"sdk": "org.kde.Sdk", "sdk": "org.kde.Sdk",
"runtime-version": "6.8", "runtime-version": "6.8",
"command": "isle", "command": "isle",
"finish-args": [ "finish-args": [
"--share=ipc", "--share=ipc",
"--socket=wayland", "--socket=wayland",
@ -19,7 +16,6 @@
"--filesystem=/mnt/:ro", "--filesystem=/mnt/:ro",
"--filesystem=home:ro" "--filesystem=home:ro"
], ],
"modules": [ "modules": [
{ {
"name": "isle", "name": "isle",
@ -34,11 +30,6 @@
"path": "../../../3rdparty", "path": "../../../3rdparty",
"dest": "3rdparty/" "dest": "3rdparty/"
}, },
{
"type": "dir",
"path": "../../../cmake",
"dest": "cmake/"
},
{ {
"type": "dir", "type": "dir",
"path": "../../../CMake", "path": "../../../CMake",
@ -86,4 +77,4 @@
} }
} }
] ]
} }