RSATom / WebChimera-desktop

[ABANDONED] Media player with fully customizable UI. It's the successor of WebChimera browser plugin.
GNU General Public License v2.0
10 stars 1 forks source link

OS X building #4

Open Ivshti opened 8 years ago

Ivshti commented 8 years ago

libvlc-sdk.pri needs to

INCLUDEPATH += $$PWD/include

win32 {
    LIBS += $$PWD/lib/msvc/libvlc.lib
} else: mac {
   LIBS += -L/Applications/VLC.app/Contents/MacOS/lib
} else: !android {
    LIBS += -lvlc
}

Also another issue is that we need to build 32 bit (no 64bit) atm. When I try 64 bit, it gives me this error:

:-1: error: symbol(s) not found for architecture x86_64

RSATom commented 8 years ago

hm... why do you need 32 bit on OS X? it's 64 bit long time already...

RSATom commented 8 years ago

I even don't sure if VLC 32bit exists for OS X atm

Ivshti commented 8 years ago

Of course. I thought that we need x32 to build on OS X, I thought it was some sort of limitation

The actual issue is:

INCLUDEPATH += $$PWD/include

win32 {
    LIBS += $$PWD/lib/msvc/libvlc.lib
} else: mac {
   LIBS += -L/Applications/VLC.app/Contents/MacOS/lib -lvlc
} else: !android {
    LIBS += -lvlc
}

I missed a -lvlc, sorry :)