We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48e9784 commit 6afa88aCopy full SHA for 6afa88a
CMakeLists.txt
@@ -9,5 +9,8 @@ set(SOURCE_FILES
9
10
add_executable(extract-xiso ${SOURCE_FILES})
11
target_compile_definitions(extract-xiso PRIVATE ${TARGET_OS})
12
+if(CMAKE_BUILD_TYPE STREQUAL "Debug")
13
+ add_definitions(-DDEBUG=1)
14
+endif()
15
set_property(TARGET extract-xiso PROPERTY C_STANDARD 90)
16
install(TARGETS extract-xiso RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}/bin")
extract-xiso.c
@@ -271,6 +271,8 @@
271
#endif
272
273
#if defined(_MSC_VER)
274
+ #include <BaseTsd.h>
275
+ typedef SSIZE_T ssize_t;
276
#define strcasecmp _stricmp
277
#define strncasecmp _strnicmp
278
#else
0 commit comments