mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
2505489d29
GCC 8.4 and Clang 13.0.1:
`cc1: note: unrecognized command-line option ‘-Wno-deprecated-non-prototype’ may have been intended to silence earlier diagnostics`
Addendum to commit 4e3bf252d
119 lines
4.3 KiB
CMake
119 lines
4.3 KiB
CMake
|
|
add_definitions(
|
|
-DDUPLICATES_ONCE
|
|
-DINS_BASE="\\\".\\\""
|
|
-DSCHILY_BUILD
|
|
-DSORTING)
|
|
|
|
include_directories(
|
|
schilytools/include
|
|
reactos
|
|
${REACTOS_BINARY_DIR}/sdk/include)
|
|
|
|
# libschily and libsiconv are licensed under CDDL whereas mkisofs is licensed under GPL.
|
|
# As such, we cannot mix the library sources with mkisofs sources and have to build them seperately.
|
|
# Later on, they may still be linked together though.
|
|
#
|
|
# Reference: http://opensource.stackexchange.com/questions/2094
|
|
|
|
add_library(libmdigest
|
|
schilytools/libmdigest/sha3.c)
|
|
|
|
add_library(libschily
|
|
schilytools/libschily/stdio/cvmod.c
|
|
schilytools/libschily/stdio/dat.c
|
|
schilytools/libschily/stdio/fcons.c
|
|
schilytools/libschily/stdio/ffileread.c
|
|
schilytools/libschily/stdio/fgetline.c
|
|
schilytools/libschily/stdio/fileopen.c
|
|
schilytools/libschily/stdio/filewrite.c
|
|
schilytools/libschily/stdio/flag.c
|
|
schilytools/libschily/stdio/niwrite.c
|
|
schilytools/libschily/astoll.c
|
|
schilytools/libschily/checkerr.c
|
|
schilytools/libschily/comerr.c
|
|
schilytools/libschily/dirent.c
|
|
schilytools/libschily/eaccess.c
|
|
schilytools/libschily/error.c
|
|
schilytools/libschily/fconv.c
|
|
schilytools/libschily/fillbytes.c
|
|
schilytools/libschily/fnmatch.c
|
|
schilytools/libschily/format.c
|
|
schilytools/libschily/getargs.c
|
|
schilytools/libschily/geterrno.c
|
|
schilytools/libschily/getexecpath.c
|
|
schilytools/libschily/gettimeofday.c
|
|
schilytools/libschily/gid.c
|
|
schilytools/libschily/jsprintf.c
|
|
schilytools/libschily/jssnprintf.c
|
|
schilytools/libschily/match.c
|
|
schilytools/libschily/mem.c
|
|
schilytools/libschily/movebytes.c
|
|
schilytools/libschily/raisecond.c
|
|
schilytools/libschily/saveargs.c
|
|
schilytools/libschily/searchinpath.c
|
|
schilytools/libschily/seterrno.c
|
|
schilytools/libschily/streql.c
|
|
schilytools/libschily/strlcat.c
|
|
schilytools/libschily/strlcpy.c
|
|
schilytools/libschily/uid.c
|
|
schilytools/libschily/zerobytes.c)
|
|
|
|
add_library(libsiconv
|
|
schilytools/libsiconv/sic_nls.c)
|
|
target_link_libraries(libsiconv libschily)
|
|
|
|
add_host_tool(mkisofs
|
|
schilytools/mkisofs/boot.c
|
|
schilytools/mkisofs/eltorito.c
|
|
schilytools/mkisofs/hash.c
|
|
schilytools/mkisofs/inode.c
|
|
schilytools/mkisofs/isonum.c
|
|
schilytools/mkisofs/joliet.c
|
|
schilytools/mkisofs/match.c
|
|
schilytools/mkisofs/mkisofs.c
|
|
schilytools/mkisofs/multi.c
|
|
schilytools/mkisofs/name.c
|
|
schilytools/mkisofs/rock.c
|
|
schilytools/mkisofs/stream.c
|
|
schilytools/mkisofs/tree.c
|
|
schilytools/mkisofs/write.c)
|
|
target_link_libraries(mkisofs libmdigest libschily libsiconv)
|
|
|
|
if(MSVC)
|
|
# mkisofs uses K&R-style function definitions to support very old compilers.
|
|
# MSVC complains about the resulting foo() vs. foo(void) mismatches.
|
|
target_compile_options(mkisofs PRIVATE "/wd4113")
|
|
|
|
if(ARCH STREQUAL "amd64")
|
|
# Disable warning "conversion from 'size_t' to 'int', possible loss of data"
|
|
target_compile_options(mkisofs PRIVATE "/wd4267")
|
|
|
|
# Disable warning "'type cast': pointer truncation from 'const char *' to 'long'"
|
|
target_compile_options(libschily PRIVATE "/wd4311")
|
|
endif()
|
|
|
|
# Disable warning "'<': signed/unsigned mismatch"
|
|
target_compile_options(mkisofs PRIVATE "/wd4018")
|
|
|
|
# Disable warning "'nchar': unreferenced local variable"
|
|
target_compile_options(mkisofs PRIVATE "/wd4101")
|
|
|
|
# Disable warning "'+=': conversion from 'x' to 'y', possible loss of data"
|
|
target_compile_options(libschily PRIVATE "/wd4244")
|
|
target_compile_options(mkisofs PRIVATE "/wd4244")
|
|
else()
|
|
# libschily implements an own printf function with support for the %r formatter.
|
|
# Silence compilers checking for invalid formatting sequences.
|
|
target_compile_options(libschily PRIVATE "-Wno-format")
|
|
|
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL "15")
|
|
# mkisofs uses K&R-style function definitions to support very old compilers.
|
|
# This causes warnings with modern compilers.
|
|
target_compile_options(libmdigest PRIVATE "-Wno-deprecated-non-prototype")
|
|
target_compile_options(libschily PRIVATE "-Wno-deprecated-non-prototype")
|
|
target_compile_options(libsiconv PRIVATE "-Wno-deprecated-non-prototype")
|
|
target_compile_options(mkisofs PRIVATE "-Wno-deprecated-non-prototype")
|
|
endif()
|
|
endif()
|