Use the default generator for CMake

This commit is contained in:
Tom Willemse 2020-11-15 21:01:39 -08:00
parent 3ef60b7cf7
commit 2c2bae1b46

6
Jenkinsfile vendored
View file

@ -4,10 +4,10 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
cmakeBuild generator: 'Make', cmakeBuild installation: 'InSearchPath',
buildDir: 'build', buildDir: 'build',
sourceDir: 'src', sourceDir: 'src'
installation: 'InSearchPath'
archiveArtifacts artifacts: 'Lox.jar', archiveArtifacts artifacts: 'Lox.jar',
fingerprint: false, fingerprint: false,
onlyIfSuccessful: true onlyIfSuccessful: true