Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Sep 22, 2024
1 parent 31933da commit 7140f35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .jenkins/Jenkinsfile_LINUX
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ withCredentials([string(credentialsId: 'PIPELINES_REPO', variable: 'checkout_url
[
$class: 'GitSCMSource',
remote: checkout_url,
credentialsId: 'CHECKOUT_TOKEN'
credentialsId: 'GITHUB_ACCESS_TOKEN'
]
)
)
Expand Down
2 changes: 1 addition & 1 deletion .jenkins/Jenkinsfile_WINDOWS
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ withCredentials([string(credentialsId: 'PIPELINES_REPO', variable: 'checkout_url
[
$class: 'GitSCMSource',
remote: checkout_url,
credentialsId: 'CHECKOUT_TOKEN'
credentialsId: 'GITHUB_ACCESS_TOKEN'
]
)
)
Expand Down
4 changes: 1 addition & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ set(CMAKE_CXX_EXTENSIONS OFF)
## some defines for debug mode (before 3rdparty.cmake)
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG")

## some defines for debug mode (before 3rdparty.cmake)
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG")

set(FINAL_BIN_DIR ${CMAKE_SOURCE_DIR}/bin)
set(CMAKE_PDB_OUTPUT_DIRECTORY "${FINAL_BIN_DIR}/debug")

Expand Down Expand Up @@ -318,6 +315,7 @@ if (EXISTS ${CMAKE_BINARY_DIR}/current_build_type)
string(STRIP ${CURRENT_BUILD_TYPE} CURRENT_BUILD_TYPE) ### removing end line wrote by echo command
set(PROJECT_BUILD_CONFIG_NAME ${CURRENT_BUILD_TYPE} CACHE STRING "" FORCE)
message(STATUS "CURRENT BUILD CONFIG is : ${PROJECT_BUILD_CONFIG_NAME}")
set(${PROJECT}_OUTPUT_NAME "${PROJECT}_${CMAKE_SYSTEM_NAME}_${PROJECT_BUILD_CONFIG_NAME}_${ARCH}")
endif()

#############################################################
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NoodlesPlate_Windows_Debug_x64_v0.7.846
NoodlesPlate_Windows_Release_x64_v0.7.847

0 comments on commit 7140f35

Please sign in to comment.