This commit is contained in:
Nishi 2025-12-05 07:49:06 +09:00
commit 2aa59e9558
Signed by: nishi
GPG key ID: 27EF69B208EB9343
4 changed files with 8 additions and 3 deletions

2
.gitmodules vendored
View file

@ -1,6 +1,6 @@
[submodule "external/milsko"]
path = external/milsko
url = https://github.com/pyrite-dev/milsko
url = ../../pyrite-dev/milsko
update = rebase
[submodule "mdebase"]
path = mdebase

View file

@ -12,7 +12,8 @@ check_include_files(paths.h HAS_PATHS_H)
include(GNUInstallDirs)
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}")
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
configure_file(include/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h)
configure_file(include/config.h.in config.h)
configure_file(wizard.sh.in wizard.sh)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
set(CLASSIC_THEME 1)

@ -1 +1 @@
Subproject commit e3edcfa7e1eea4c6f4da9296fc146c926353d6f6
Subproject commit 59f81d9eb4fa35eacd2f0e769089b3bc506acbf0

4
wizard.sh.in Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
for i in ./*/wizard.sh; do
"$i"
done