📈
juce-cookbook
  • Introduction
  • Getting Started
    • Why JUCE?
    • Other Libraries
    • Resources
  • C++
    • IDE
    • Tools
    • Resources
  • Setup
    • macOS
    • Windows
    • Linux
    • Projucer vs. CMake
    • Create Project
    • Debugging
    • Documentation
  • Coding
    • User Interface
      • Component
      • Button
      • Look&Feel
    • Plug-in
      • Basics
      • Parameter
    • DSP
      • Basics
      • Create your own
    • Modules
    • Misc
    • Examples
    • Snippets
  • Testing
    • Unit tests
    • pluginval
    • Sanitizers
    • Profile
    • Benchmark
  • Continuous Integration
    • Travis CI
    • AppVeyor
    • Publish
  • Wish List
  • What's next
  • License
Powered by GitBook
On this page

Was this helpful?

  1. Continuous Integration

AppVeyor

Example Configuration

JUCE + CMake:

version: 0.1.0.{build}
clone_folder: C:/projects/project
branches:
  only:
    - master

image: Visual Studio 2019
platform: x64
configuration:
  - Release

install:
  - cd %APPVEYOR_BUILD_FOLDER%
  - git submodule update --init --recursive

build:
  parallel: true

build_script:
  - cd C:/projects/project
  - mkdir build
  - cd build
  - cmake -G "Visual Studio 16 2019" ..
  - cmake --build . --config Release
PreviousTravis CINextPublish

Last updated 4 years ago

Was this helpful?