vinipsmaker / tufao

An asynchronous web framework for C++ built on top of Qt
http://vinipsmaker.github.io/tufao/
GNU Lesser General Public License v2.1
589 stars 179 forks source link

Library needs to be in /usr/lib64 on Fedora x86_64 #53

Closed Venemo closed 9 years ago

Venemo commented 9 years ago

Hi,

I'm building Tufao on Fedora and running on a 64-bit Intel CPU. On this OS, the x86_64 libraries need to go to /usr/lib64 and the i686 ones to /usr/lib because you can have x86_64 and i686 libraries installed alongside each other.

Unfortunately, I'm not familiar enough with cmake to know how to solve this, but it shouldn't be too hard. :)

vinipsmaker commented 9 years ago

-DLIB_SUFFIX=${LIB_SUFFIX} is supported for a while already.

http://asciinema.org/a/13172

Venemo commented 9 years ago

Ah, thank you!