Skip to content

Commit be25027

Browse files
committed
setup: drop the obsolete SDL2 args from the Windows Ignis configure
The interactive frontend moved from SDL2 to GLFW + OpenGL, so the SDL2_LIBRARY / SDL2_INCLUDE_DIR cmake arguments are unused.
1 parent ceedbdf commit be25027

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

scripts/setup/setup_ignis.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ if ($IsWindows) {
4040
$TBB_DIR = "$DEPS_ROOT\tbb\lib\cmake\tbb".Replace("\", "/")
4141
$ZLIB_LIB = "$DEPS_ROOT\zlib\lib\zlib.lib".Replace("\", "/")
4242
$ZLIB_INCLUDE = "$DEPS_ROOT\zlib\include".Replace("\", "/")
43-
$SDL2_LIB = "$DEPS_ROOT\SDL2\lib\x64\SDL2.lib".Replace("\", "/")
44-
$SDL2_INCLUDE = "$DEPS_ROOT\SDL2\include".Replace("\", "/")
4543

4644
$OIDN_DIR = Get-ChildItem -Path "$DEPS_ROOT/oidn/lib/cmake" -Directory | Sort-Object -Descending | Select-Object -First 1
4745
}
@@ -62,8 +60,6 @@ if ($IsWindows) {
6260
$CMAKE_Args += '-DTBB_DIR:PATH=' + $TBB_DIR
6361
$CMAKE_Args += '-DZLIB_LIBRARY:FILEPATH=' + $ZLIB_LIB
6462
$CMAKE_Args += '-DZLIB_INCLUDE_DIR:PATH=' + $ZLIB_INCLUDE
65-
$CMAKE_Args += '-DSDL2_LIBRARY:FILEPATH=' + $SDL2_LIB
66-
$CMAKE_Args += '-DSDL2_INCLUDE_DIR:PATH=' + $SDL2_INCLUDE
6763
$CMAKE_Args += '-DOpenImageDenoise_DIR:PATH=' + $($OIDN_DIR.FullName)
6864
}
6965
$CMAKE_Args += '-DIG_WITH_ASSERTS:BOOL=ON'

0 commit comments

Comments
 (0)