diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 1610694..3bb4cc7 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -22,5 +22,5 @@ TARGET_LINK_LIBRARIES(core sample) execute_process( - COMMAND ${CMAKE_SOURCE_DIR}/build.sh Core + COMMAND ${CMAKE_SOURCE_DIR}/sync.sh Core ) diff --git a/core/core.vcxproj b/core/core.vcxproj index cc42e52..bf96764 100644 --- a/core/core.vcxproj +++ b/core/core.vcxproj @@ -90,7 +90,7 @@ Windows - call "$(SolutionDir)build.bat" "Core" + call "$(SolutionDir)sync.bat" "Core" @@ -106,7 +106,7 @@ Windows - call "$(SolutionDir)build.bat" "Core" + call "$(SolutionDir)sync.bat" "Core" @@ -126,7 +126,7 @@ true - call "$(SolutionDir)build.bat" "Core" + call "$(SolutionDir)sync.bat" "Core" @@ -146,7 +146,7 @@ true - call "$(SolutionDir)build.bat" "Core" + call "$(SolutionDir)sync.bat" "Core" diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index 0f28473..38853e6 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -14,5 +14,5 @@ ADD_LIBRARY(gui ${SRC}) TARGET_LINK_LIBRARIES(gui core sample) execute_process( - COMMAND ${CMAKE_SOURCE_DIR}/build.sh Gui + COMMAND ${CMAKE_SOURCE_DIR}/sync.sh Gui ) diff --git a/gui/gui.vcxproj b/gui/gui.vcxproj index e58b9cd..c325370 100644 --- a/gui/gui.vcxproj +++ b/gui/gui.vcxproj @@ -104,7 +104,7 @@ Windows - call "$(SolutionDir)build.bat" "Gui" + call "$(SolutionDir)sync.bat" "Gui" @@ -120,7 +120,7 @@ Windows - call "$(SolutionDir)build.bat" "Gui" + call "$(SolutionDir)sync.bat" "Gui" @@ -140,7 +140,7 @@ true - call "$(SolutionDir)build.bat" "Gui" + call "$(SolutionDir)sync.bat" "Gui" @@ -160,7 +160,7 @@ true - call "$(SolutionDir)build.bat" "Gui" + call "$(SolutionDir)sync.bat" "Gui" diff --git a/build.bat b/sync.bat similarity index 100% rename from build.bat rename to sync.bat diff --git a/build.sh b/sync.sh similarity index 100% rename from build.sh rename to sync.sh