Skip to content
Snippets Groups Projects
Commit c15ee010 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

contrib: always set a CMAKE_SYSTEM_NAME when building for Windows


(cherry picked from commit 1a58bd09) (rebased)

rebased:
- this branch already had RelWithDebInfo and the CXXFLAGS fix

Signed-off-by: default avatarSteve Lhomme <robux4@ycbcr.xyz>
parent c945eff1
No related branches found
No related tags found
Loading
......@@ -507,6 +507,22 @@ help:
.PHONY: all fetch fetch-all install mostlyclean clean distclean package list help prebuilt
CMAKE_SYSTEM_NAME =
ifdef HAVE_WIN32
CMAKE_SYSTEM_NAME = Windows
ifdef HAVE_VISUALSTUDIO
ifdef HAVE_WINSTORE
CMAKE_SYSTEM_NAME = WindowsStore
endif
ifdef HAVE_WINDOWSPHONE
CMAKE_SYSTEM_NAME = WindowsPhone
endif
endif
endif
ifdef HAVE_DARWIN_OS
CMAKE_SYSTEM_NAME = Darwin
endif
# CMake toolchain
toolchain.cmake:
$(RM) $@
......@@ -516,24 +532,15 @@ else
echo "set(CMAKE_BUILD_TYPE RelWithDebInfo)" >> $@
endif
echo "set(CMAKE_SYSTEM_PROCESSOR $(ARCH))" >> $@
if test -n "$(CMAKE_SYSTEM_NAME)"; then \
echo "set(CMAKE_SYSTEM_NAME $(CMAKE_SYSTEM_NAME))" >> $@; \
fi;
ifdef HAVE_WIN32
ifdef HAVE_VISUALSTUDIO
ifdef HAVE_WINDOWSPHONE
echo "set(CMAKE_SYSTEM_NAME WindowsPhone)" >> $@
else
ifdef HAVE_WINSTORE
echo "set(CMAKE_SYSTEM_NAME WindowsStore)" >> $@
else
echo "set(CMAKE_SYSTEM_NAME Windows)" >> $@
endif
endif
endif
ifdef HAVE_CROSS_COMPILE
echo "set(CMAKE_RC_COMPILER $(WINDRES))" >> $@
endif
endif
ifdef HAVE_DARWIN_OS
echo "set(CMAKE_SYSTEM_NAME Darwin)" >> $@
echo "set(CMAKE_C_FLAGS \"$(CFLAGS) $(EXTRA_CFLAGS)\")" >> $@
echo "set(CMAKE_CXX_FLAGS \"$(CXXFLAGS) $(EXTRA_CXXFLAGS)\")" >> $@
echo "set(CMAKE_LD_FLAGS \"$(LDFLAGS)\")" >> $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment