Skip to content
Snippets Groups Projects
Select Git revision
  • 0a432c12feb280b72ed17714bbd3a9d518c9308a
  • main default protected
  • upstream_obfs4
  • obfs4_over_kcp
  • ci_fixes
  • bug/stop-fw-osx
  • feat/drawer-implementation
  • osx-fonts
  • feat/ui-redesign
  • master
  • 0.21.11
  • 0.21.6
  • 0.21.2
  • 0.20.4
  • 0.20.1
  • 0.19.11
  • 0.19.6
  • 0.19.2
  • 0.19.1
  • 0.18.12
  • 0.18.11
  • 0.18.10
  • 0.18.9
  • 0.0.1
  • 0.0
25 results

bitmask.pro

Blame
  • Forked from leap / bitmask-vpn
    Source project has a limited visibility.
    bitmask.pro 1.31 KiB
    #TARGET = $$BINARY_NAME
    
    CONFIG += qt staticlib
    windows:CONFIG += console
    unix:DEBUG:CONFIG += debug
    lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5")
    QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.11
    
    !defined(VENDOR_PATH, var):VENDOR_PATH="providers/riseup"
    
    message("[qmake] VENDOR_PATH: $$VENDOR_PATH")
    
    RESOURCES += gui/gui.qrc
    RESOURCES += $$VENDOR_PATH/vendor.qrc
    
    ICON = $$VENDOR_PATH/icon.png
    
    macx {
        ICON = $$VENDOR_PATH/assets/icon.icns
        LIBS += -framework Security
    }
    win32 {
        RC_ICONS = $$VENDOR_PATH/assets/icon.ico
    }
    
    QT += qml quick widgets
    
    SOURCES += \
        gui/main.cpp \
        gui/qjsonmodel.cpp \
        gui/handlers.cpp
    
    
    HEADERS += \
        gui/handlers.h \
        gui/qjsonmodel.h \
        lib/libgoshim.h
    
    # we build from build/qt
    LIBS += -L../../lib -lgoshim -lpthread
    
    DESTDIR = release
    OBJECTS_DIR = release/.obj
    MOC_DIR = release/.moc
    RCC_DIR = release/.rcc
    UI_DIR = release/.ui
    
    Release:DESTDIR = release
    Release:OBJECTS_DIR = release/.obj
    Release:MOC_DIR = release/.moc
    Release:RCC_DIR = release/.rcc
    Release:UI_DIR = release/.ui
    
    Debug:DESTDIR = debug
    Debug:OBJECTS_DIR = debug/.obj
    Debug:MOC_DIR = debug/.moc
    Debug:RCC_DIR = debug/.rcc
    Debug:UI_DIR = debug/.ui
    
    DISTFILES += \
        README.md
    
    CONFIG += lrelease embed_translations
    
    TRANSLATIONS += $$files(gui/i18n/*.ts, true)
    RESOURCES += $$files(gui/i18n/*.qm, true)