Skip to content
Snippets Groups Projects
Select Git revision
  • 31fedd529b66934f61906e88b97be81af84a49ea
  • master default
  • windows_ci_static
  • c_link
  • cpack
  • windows_ci
  • cert_pk_id
  • proxy_push_result
  • cnode_put_id
  • update-windows-build
  • proxy
  • resubscribe_on_token_change
  • actions
  • client_mode
  • llhttp
  • search_node_add
  • crypto_aes_gcm_argon2
  • ios_notifications
  • log_fmt
  • v2asio
  • fix-msvc
  • v3.4.0
  • v3.3.1
  • v3.3.1rc1
  • v3.3.1rc2
  • v3.3.0
  • v3.2.0
  • v3.1.11
  • v3.1.10
  • v3.1.9
  • v3.1.8.2
  • v3.1.8.1
  • v3.1.8
  • v3.1.7
  • v3.1.6
  • v3.1.5
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1
  • v3.0.1
41 results

crypto.h

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    compile_tests.sh 796 B
    #!/bin/bash
    # Build lrc, client-qt and pass tests
    
    # Get number of CPU available
    cpuCount=$(nproc || echo -n 4)
    
    # Project directories
    topDir=$(pwd)/..
    echo "Project root dir: "${topDir}
    
    installDir=$topDir/install
    daemonDir=$topDir/daemon
    lrcDir=$topDir/lrc
    clientDir=$topDir/client-qt
    
    # Build lrc
    cd ${lrcDir}
    mkdir -p build
    cd build
    echo "Building lrc in "$PWD
    cmake .. -DCMAKE_INSTALL_PREFIX=$installDir/lrc \
          -DRING_INCLUDE_DIR=$daemonDir/src/dring \
          -DRING_XML_INTERFACES_DIR=$daemonDir/bin/dbus
    make
    make install
    
    # Build client and tests
    cd $clientDir
    mkdir -p build
    cd build
    echo "Building client in "$PWD
    pandoc -f markdown -t html5 -o ../changelog.html ../changelog.md
    cmake ..
    make -j${cpuCount}
    
    # Pass Tests
    cd tests
    ./unittests
    ./qml_tests -input $clientDir/tests/qml