martyr-deepin / deepin-screenshot

Deprecated (migrated into deepin-screen-recorder after v20), consider create and maintain your own fork if you love it.
https://www.deepin.org/original/deepin-screenshot/
GNU General Public License v3.0
346 stars 102 forks source link

can not qmake #56

Closed Matrixsun closed 4 years ago

Matrixsun commented 5 years ago

hello everyone

my system is ubuntu 18.04 when I run " qmake ..", I get a error: Cannot read /${path_to}/deepin-screen: file to open is a directory Error processing project file: .. how can I slove it

BLumia commented 5 years ago

Whoops, the README is outdated, we currently use CMake so you need:

cd /path/to/the/source/
mkdir build
cd build
cmake ../         # instead of qmake
make

edit: I updated the README, it's up to date now.