diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-02 14:11:15 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-02 14:11:15 +0300 |
commit | e982dcf32672453f6ac22d59325260504cb130ea (patch) | |
tree | b9381b7d4c502071a2e1835c18b65748cf1a2e13 /.ci/Makefile | |
parent | Makefile: get rid of TRAVIS_BUILD_DIR where unnecessary (diff) | |
download | cmake-common-e982dcf32672453f6ac22d59325260504cb130ea.tar.gz cmake-common-e982dcf32672453f6ac22d59325260504cb130ea.zip |
move Makefile to .ci/
Diffstat (limited to '')
-rw-r--r-- | .ci/Makefile (renamed from Makefile) | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,8 +53,8 @@ x86_args = -A Win32 install_prefix = C:/install else makefile_dir := $(dir $(realpath $(firstword $(MAKEFILE_LIST)))) -x64_args := -D "CMAKE_TOOLCHAIN_FILE=$(makefile_dir)/cmake/toolchains/gcc-x64.cmake" -x86_args := -D "CMAKE_TOOLCHAIN_FILE=$(makefile_dir)/cmake/toolchains/gcc-x86.cmake" +x64_args := -D "CMAKE_TOOLCHAIN_FILE=$(makefile_dir)/../cmake/toolchains/gcc-x64.cmake" +x86_args := -D "CMAKE_TOOLCHAIN_FILE=$(makefile_dir)/../cmake/toolchains/gcc-x86.cmake" install_prefix := $$HOME/install endif |