mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
2c11c41115
This finally fixes our duplicated getopt functions from different sources and gives us an up to date and the most compatible implementation. isohybrid actually relies on a glibc-specific getopt behavior that we previously hacked into the reactos_support_code.c implementation derived from BSD/mingw-w64. widl also needs getopt and previously used an even older BSD-derived code.
10 lines
160 B
CMake
10 lines
160 B
CMake
|
|
add_definitions(
|
|
-DISOHYBRID_C_STANDALONE)
|
|
|
|
add_host_tool(isohybrid
|
|
isohybrid.c
|
|
reactos_support_code.c
|
|
../port/getopt.c
|
|
../port/getopt1.c)
|