📢 Webサイト閉鎖と移転のお知らせ
このWebサイトは2026年9月に閉鎖いたします。
新しい記事は移転先で追加しております。(旧サイトでは記事を追加しておりません)
| 40行目: | 40行目: | ||
<u>Qt 6.5以降、CMake 3.24以降、OpenSSL 3.0以降が必要となることに注意する。</u><br> | <u>Qt 6.5以降、CMake 3.24以降、OpenSSL 3.0以降が必要となることに注意する。</u><br> | ||
<br> | <br> | ||
<syntaxhighlight lang="text"> | |||
# RHEL | # RHEL | ||
sudo dnf install epel-release | sudo dnf install epel-release | ||
| 66行目: | 67行目: | ||
qt6-base-dev qt6-tools-dev \ | qt6-base-dev qt6-tools-dev \ | ||
libgtest-dev libgmock-dev | libgtest-dev libgmock-dev | ||
</syntaxhighlight> | |||
<br> | <br> | ||
* 各バージョンのソースコードからインストールする場合 | * 各バージョンのソースコードからインストールする場合 | ||
*: [https://github.com/deskflow/deskflow/releases DeskflowのGithub]からソースコードをダウンロードする。 | *: [https://github.com/deskflow/deskflow/releases DeskflowのGithub]からソースコードをダウンロードする。 | ||
*: ダウンロードしたファイルを解凍する。 | *: ダウンロードしたファイルを解凍する。 | ||
*: < | *: <syntaxhighlight lang="text"> | ||
tar xf deskflow-<バージョン>.tar.gz | |||
cd deskflow-<バージョン> | |||
</syntaxhighlight> | |||
*: <br> | *: <br> | ||
*: Deskflowをビルドおよびインストールする。 | *: Deskflowをビルドおよびインストールする。 | ||
*: < | *: <syntaxhighlight lang="text"> | ||
mkdir build && cd build | |||
cmake -DCMAKE_BUILD_TYPE=Release | |||
<br> | -DCMAKE_INSTALL_PREFIX=<Deskflowのインストールディレクトリ> | ||
.. | |||
make -j $(nproc) または cmake --build . -j $(nproc) | |||
make install または cmake --install . | |||
</syntaxhighlight> | |||
*: <br> | |||
* <code>git clone</code>コマンドを使用する場合 | * <code>git clone</code>コマンドを使用する場合 | ||
*: < | *: <syntaxhighlight lang="text"> | ||
git clone https://github.com/deskflow/deskflow.git | |||
cd deskflow | |||
</syntaxhighlight> | |||
*: <br> | *: <br> | ||
*: Deskflowをビルドおよびインストールする。 | *: Deskflowをビルドおよびインストールする。 | ||
*: < | *: <syntaxhighlight lang="text"> | ||
mkdir build && cd build | |||
cmake -DCMAKE_BUILD_TYPE=Release | |||
-DCMAKE_INSTALL_PREFIX=<Synergyのインストールディレクトリ> | |||
.. | |||
make -j $(nproc) または cmake --build . -j $(nproc) | |||
make install または cmake --install . | |||
</syntaxhighlight> | |||
<br> | <br> | ||
任意のディレクトリにインストールした場合、Deskflowの実行ファイルが存在するディレクトリに、以下に示すようなシェルスクリプトを作成する。<br> | 任意のディレクトリにインストールした場合、Deskflowの実行ファイルが存在するディレクトリに、以下に示すようなシェルスクリプトを作成する。<br> | ||
| 120行目: | 135行目: | ||
インストールした後、Deskflowの設定を行う。<br> | インストールした後、Deskflowの設定を行う。<br> | ||
<br> | <br> | ||
==== Deskflowのアンインストール ==== | ==== Deskflowのアンインストール ==== | ||
* Windowsの場合 | * Windowsの場合 | ||