Skip to content

Commit 4825069

Browse files
updated TargetCmake.cmake
1 parent f43ec93 commit 4825069

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

defaults/TargetCmake.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Cutom target - cmake
22
add_custom_target(cmake
33
COMMAND ${CMAKE_COMMAND} -P ${PROJECT_SOURCE_DIR}/cmake/CacheClean.cmake
4-
COMMAND echo "Command: ${CMAKE_COMMAND} -G \"${CMAKE_GENERATOR}\" -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} ${PROJECT_SOURCE_DIR}"
5-
COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} ${PROJECT_SOURCE_DIR}
4+
COMMAND echo "Command: ${CMAKE_COMMAND} -S ${PROJECT_SOURCE_DIR} -G \"${CMAKE_GENERATOR}\" -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}"
5+
COMMAND ${CMAKE_COMMAND} -S ${PROJECT_SOURCE_DIR} -G "${CMAKE_GENERATOR}" -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
66
)
77

88
message(STATUS "Added a custom target for build: 'cmake'")

src/tglobal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
constexpr auto TF_VERSION_STR = "2.5.0";
33
constexpr auto TF_VERSION_NUMBER = 0x020500;
4-
constexpr auto TF_SRC_REVISION = 2660;
4+
constexpr auto TF_SRC_REVISION = 2676;
55

66
#include <QMetaType>
77
#include <QIODevice>

tools/test/releasetest/releasetest.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ if ERRORLEVEL 1 (
138138
call :CleanUp
139139
exit /B 1
140140
)
141-
cmake --build build --config %1 --clean-first -j
141+
cmake --build build --config %1 --clean-first
142142
if ERRORLEVEL 1 (
143143
echo;
144144
echo Build Error!

0 commit comments

Comments
 (0)