1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# - Script to compile Win32-developed sources using tchar without modifying the code
# Requires that ${CMAKE_SOURCE_DIR}/cmake/workarounds/tchar/ be present.
#
# TCHAR_WORKAROUND, automatically set to on when not on win32
# TCHAR_INCLUDE_DIR, location of our fake tchar.h file
#
# Original Author:
# 2009-2010 Rylie Pavlik <rylie@ryliepavlik.com>
# https://ryliepavlik.com/
# Iowa State University HCI Graduate Program/VRAC
#
# Copyright 2009-2010, Iowa State University
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#
# SPDX-License-Identifier: BSL-1.0
if(NOT WIN32)
option(TCHAR_WORKAROUND "Work around missing tchar error" on)
else()
option(TCHAR_WORKAROUND "Work around missing tchar error" off)
endif()
mark_as_advanced(TCHAR_WORKAROUND)
if(TCHAR_WORKAROUND)
find_path(TCHAR_INCLUDE_DIR
tchar.h
PATHS
${CMAKE_SOURCE_DIR}/cmake/workarounds/tchar/
./workarounds/tchar/
PATH_SUFFIXES
workarounds/
workarounds/tchar/)
if(TCHAR_INCLUDE_DIR)
include_directories(${TCHAR_INCLUDE_DIR})
mark_as_advanced(TCHAR_INCLUDE_DIR)
endif()
endif()
|