[GH-ISSUE #123] How do you install barrier? #96

Closed
opened 2026-05-05 05:14:30 -06:00 by gitea-mirror · 8 comments
Owner

Originally created by @vincentntang on GitHub (Sep 4, 2018).
Original GitHub issue: https://github.com/debauchee/barrier/issues/123

I checked the releases, installed it on my macOS and windows computer.
Setup server config for windows, and client side for macOS, but I'm a bit lost there's absolutely no documentation for troubleshooting common errors

Originally created by @vincentntang on GitHub (Sep 4, 2018). Original GitHub issue: https://github.com/debauchee/barrier/issues/123 I checked the releases, installed it on my macOS and windows computer. Setup server config for windows, and client side for macOS, but I'm a bit lost there's absolutely no documentation for troubleshooting common errors
gitea-mirror 2026-05-05 05:14:30 -06:00
  • closed this issue
  • added the
    query
    label
Author
Owner

@AdrianKoshka commented on GitHub (Sep 4, 2018):

I haven't had much free-time to right any end-user documentation, I'd imagine synergy might have some though. If you can actually give us the specific error(s) you're getting (like the issue template says you're supposed to), I'd be more inclined to help you.

<!-- gh-comment-id:418247537 --> @AdrianKoshka commented on GitHub (Sep 4, 2018): I haven't had much free-time to right any end-user documentation, I'd imagine synergy might have some though. If you can actually give us the specific error(s) you're getting (like the issue template says you're supposed to), I'd be more inclined to help you.
Author
Owner

@marekkaczkowski commented on GitHub (Sep 4, 2018):

I'm trying to build barrier on Mac getting Qt5 no config error:

-- Configuring file build_installer.sh
CMake Warning at src/gui/CMakeLists.txt:3 (find_package):
  By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Qt5", but
  CMake did not find one.

  Could not find a package configuration file provided by "Qt5" with any of
  the following names:

    Qt5Config.cmake
    qt5-config.cmake

  Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR"
  to a directory containing one of the above files.  If "Qt5" provides a
  separate development package or SDK, be sure it has been installed.


CMake Error at src/gui/CMakeLists.txt:25 (qt5_use_modules):
  Unknown CMake command "qt5_use_modules".
<!-- gh-comment-id:418401008 --> @marekkaczkowski commented on GitHub (Sep 4, 2018): I'm trying to build `barrier` on Mac getting Qt5 no config error: ``` -- Configuring file build_installer.sh CMake Warning at src/gui/CMakeLists.txt:3 (find_package): By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Qt5", but CMake did not find one. Could not find a package configuration file provided by "Qt5" with any of the following names: Qt5Config.cmake qt5-config.cmake Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR" to a directory containing one of the above files. If "Qt5" provides a separate development package or SDK, be sure it has been installed. CMake Error at src/gui/CMakeLists.txt:25 (qt5_use_modules): Unknown CMake command "qt5_use_modules". ```
Author
Owner

@liamsgotgenes commented on GitHub (Sep 7, 2018):

@marekkaczkowski try installing qt5 with Homebrew:
brew install qt5
if you don't have Homebrew installed, try this:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null

<!-- gh-comment-id:419282771 --> @liamsgotgenes commented on GitHub (Sep 7, 2018): @marekkaczkowski try installing qt5 with Homebrew: `brew install qt5` if you don't have Homebrew installed, try this: `ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null`
Author
Owner

@walker0643 commented on GitHub (Sep 8, 2018):

@vincentntang Can you confirm whether or not @liamsgotgenes's suggestion has solved your problem?

<!-- gh-comment-id:419673050 --> @walker0643 commented on GitHub (Sep 8, 2018): @vincentntang Can you confirm whether or not @liamsgotgenes's suggestion has solved your problem?
Author
Owner

@LM-Randomize commented on GitHub (Oct 16, 2018):

Trying to build barrier on Fedora (28):

CMake Warning at src/gui/CMakeLists.txt:3 (find_package):
  By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "Qt5", but
  CMake did not find one.

  Could not find a package configuration file provided by "Qt5" with any of
  the following names:

    Qt5Config.cmake
    qt5-config.cmake

  Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR"
  to a directory containing one of the above files.  If "Qt5" provides a
  separate development package or SDK, be sure it has been installed.

Qt5 is installed.

locate Qt5
/usr/lib64/libQt5Concurrent.so.5
/usr/lib64/libQt5Concurrent.so.5.11
/usr/lib64/libQt5Concurrent.so.5.11.1
/usr/lib64/libQt5Core.so.5
/usr/lib64/libQt5Core.so.5.11
/usr/lib64/libQt5Core.so.5.11.1
[...]
<!-- gh-comment-id:430238210 --> @LM-Randomize commented on GitHub (Oct 16, 2018): Trying to build barrier on Fedora (28): ``` CMake Warning at src/gui/CMakeLists.txt:3 (find_package): By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Qt5", but CMake did not find one. Could not find a package configuration file provided by "Qt5" with any of the following names: Qt5Config.cmake qt5-config.cmake Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR" to a directory containing one of the above files. If "Qt5" provides a separate development package or SDK, be sure it has been installed. ``` Qt5 is installed. ``` locate Qt5 /usr/lib64/libQt5Concurrent.so.5 /usr/lib64/libQt5Concurrent.so.5.11 /usr/lib64/libQt5Concurrent.so.5.11.1 /usr/lib64/libQt5Core.so.5 /usr/lib64/libQt5Core.so.5.11 /usr/lib64/libQt5Core.so.5.11.1 [...] ```
Author
Owner

@RoryCrispin commented on GitHub (Oct 24, 2018):

@LM-Randomize Try installing qt5-devel

<!-- gh-comment-id:432559559 --> @RoryCrispin commented on GitHub (Oct 24, 2018): @LM-Randomize Try installing qt5-devel
Author
Owner

@LM-Randomize commented on GitHub (Oct 24, 2018):

@RoryCrispin Thanks, qt5-devel solved my issue!

<!-- gh-comment-id:432640611 --> @LM-Randomize commented on GitHub (Oct 24, 2018): @RoryCrispin Thanks, qt5-devel solved my issue!
Author
Owner

@vincentntang commented on GitHub (Nov 6, 2018):

Sorry for the really slow response, but I decided not to use barrier over other alternatives / not needing a keyboard that works on multiple computers

<!-- gh-comment-id:436403737 --> @vincentntang commented on GitHub (Nov 6, 2018): Sorry for the really slow response, but I decided not to use barrier over other alternatives / not needing a keyboard that works on multiple computers
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: github-starred/barrier#96
No description provided.