mirror of
https://github.com/wjakob/tbb.git
synced 2026-08-31 01:20:42 +08:00
29 lines
1.6 KiB
Batchfile
29 lines
1.6 KiB
Batchfile
@echo off
|
|
REM
|
|
REM Copyright 2005-2016 Intel Corporation. All Rights Reserved.
|
|
REM
|
|
REM This file is part of Threading Building Blocks. Threading Building Blocks is free software;
|
|
REM you can redistribute it and/or modify it under the terms of the GNU General Public License
|
|
REM version 2 as published by the Free Software Foundation. Threading Building Blocks is
|
|
REM distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
REM implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
REM See the GNU General Public License for more details. You should have received a copy of
|
|
REM the GNU General Public License along with Threading Building Blocks; if not, write to the
|
|
REM Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
REM
|
|
REM As a special exception, you may use this file as part of a free software library without
|
|
REM restriction. Specifically, if other files instantiate templates or use macros or inline
|
|
REM functions from this file, or you compile this file and link it with other files to produce
|
|
REM an executable, this file does not by itself cause the resulting executable to be covered
|
|
REM by the GNU General Public License. This exception does not however invalidate any other
|
|
REM reasons why the executable file might be covered by the GNU General Public License.
|
|
REM
|
|
if "%DXSDK_DIR%"=="" goto error_no_DXSDK
|
|
goto end
|
|
|
|
:error_no_DXSDK
|
|
echo DirectX SDK Check : error : This example requires the DirectX SDK. Either (re)-install the DirectX SDK, or set the DXSDK_DIR environment variable to indicate where it is installed.
|
|
|
|
:end
|
|
|