maim
maim copied to clipboard
Issue installing
weird issue
fatal: destination path 'slop' already exists and is not an empty directory.
gido@gido-desk:~$ cd slop
gido@gido-desk:~/slop$ cmake -DCMAKE_INSTALL_PREFIX="/usr" ./
CMake Error at /usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:148 (message):
Could NOT find GLM (missing: GLM_INCLUDE_DIR)
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:388 (_FPHSA_FAILURE_MESSAGE)
modules/FindGLM.cmake:44 (find_package_handle_standard_args)
CMakeLists.txt:54 (find_package)
-- Configuring incomplete, errors occurred!
See also "/home/gideon/slop/CMakeFiles/CMakeOutput.log".
gido@gido-desk:~/slop$ make && sudo make install
make: *** No targets specified and no makefile found. Stop.
gido@gido-desk:~/slop$ cd ..
gido@gido-desk:~$ git clone https://github.com/naelstrof/maim.git
fatal: destination path 'maim' already exists and is not an empty directory.
gido@gido-desk:~$ cmake -DCMAKE_INSTALL_PREFIX="/usr" ./
CMake Error: The source directory "/home/gideon" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
gido@gido-desk:~$ make && sudo make install
make: *** No targets specified and no makefile found. Stop.```
You need to install glm
You'll have to install any other dependency as well. Make sure each command completes without printing "Error" or "No makefile found".
How do i get GLM? its not in apt get
Run this in a terminal before trying to cmake or make.
sudo apt-get install libpng12-dev libglm-dev libjpeg-dev
That might be all the dependencies required to build maim, but I don't use ubuntu so I'm unsure! Good luck.