Update cmake build script
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-12-03 11:44:51 -05:00
parent d90330c5ca
commit 289b5ee43e
3 changed files with 5 additions and 6 deletions

1
Jenkinsfile vendored
View File

@ -7,7 +7,6 @@ pipeline {
stage('Setup') {
steps {
sh "chmod +x -R ${env.WORKSPACE}"
sh "mkdir ./out/build/default" //cmake is seemingly not building directories itself, so doing it manually at the top
}
}
stage ('Check Environment') {

View File

@ -1,3 +1,3 @@
#maven.buildNumber.plugin properties file
#Sun Dec 01 23:35:09 EST 2024
buildNumber=512
#Tue Dec 03 11:43:16 EST 2024
buildNumber=513

View File

@ -1,3 +1,3 @@
#Builds the native code
cmake --preset=default
cmake --build ./out/build/default
# Builds the native code
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE= -D CMAKE_INSTALL_PREFIX=${PWD}/out/install -S ${PWD} -B ${PWD}/out/build -G Ninja
cmake --build ${PWD}/out/build