Skip to content

Commit a3c267c

Browse files
committed
There is no longer a separate curses dll to load on Windows.
1 parent 12b2d80 commit a3c267c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.16)
55
set(CMAKE_CXX_STANDARD 17)
66
set(CMAKE_CXX_STANDARD_REQUIRED true)
77
if(APPLE)
8-
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "")
8+
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.13 CACHE STRING "")
99
endif()
1010

1111
set(src ${CMAKE_SOURCE_DIR})

init.lua

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,7 @@ if not rawget(_L, 'Compare Files') then
9393
end
9494

9595
local lib = 'file_diff.diff'
96-
if OSX then
97-
lib = lib .. 'osx'
98-
elseif WIN32 and CURSES then
99-
lib = lib .. '-curses'
100-
end
96+
if OSX then lib = lib .. 'osx' end
10197
local diff = require(lib)
10298
local DELETE, INSERT = 0, 1 -- C++: "enum Operation {DELETE, INSERT, EQUAL};"
10399

0 commit comments

Comments
 (0)