summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Frederic L2019-02-03 01:15:46 -0300
committerGravatar ReinUsesLisp2019-02-06 22:23:41 -0300
commit8ff2ce520751b2eb833ded21f9f66f89059ff829 (patch)
treedf354f595d5cb7f87c21b8f509d490777732a9c2 /src
parentgl_shader_disk_cache: Use unordered containers (diff)
downloadyuzu-8ff2ce520751b2eb833ded21f9f66f89059ff829.tar.gz
yuzu-8ff2ce520751b2eb833ded21f9f66f89059ff829.tar.xz
yuzu-8ff2ce520751b2eb833ded21f9f66f89059ff829.zip
cmake: Use CMAKE_COMMAND instead of "cmake"
Co-Authored-By: ReinUsesLisp <reinuseslisp@airmail.cc>
Diffstat (limited to 'src')
-rw-r--r--src/common/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index f38c0fee9..4b6ddf894 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -4,7 +4,7 @@
4# like this allows for much better caching since it doesn't force the user to recompile binary shaders every update 4# like this allows for much better caching since it doesn't force the user to recompile binary shaders every update
5set(VIDEO_CORE "${CMAKE_SOURCE_DIR}/src/video_core") 5set(VIDEO_CORE "${CMAKE_SOURCE_DIR}/src/video_core")
6add_custom_command(OUTPUT scm_rev.cpp 6add_custom_command(OUTPUT scm_rev.cpp
7 COMMAND cmake -DSRC_DIR="${CMAKE_SOURCE_DIR}" -P "${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake" 7 COMMAND ${CMAKE_COMMAND} -DSRC_DIR="${CMAKE_SOURCE_DIR}" -P "${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake"
8 DEPENDS 8 DEPENDS
9 # WARNING! It was too much work to try and make a common location for this list, 9 # WARNING! It was too much work to try and make a common location for this list,
10 # so if you need to change it, please update CMakeModules/GenerateSCMRev.cmake as well 10 # so if you need to change it, please update CMakeModules/GenerateSCMRev.cmake as well