mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 10:58:26 -05:00
Implement new argument parsing using getopt and add the corresponding library to externals
This commit is contained in:
11
externals/getopt/CMakeLists.txt
vendored
Normal file
11
externals/getopt/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
set(SRCS
|
||||
getopt.c
|
||||
)
|
||||
set(HEADERS
|
||||
getopt.h
|
||||
)
|
||||
|
||||
create_directory_groups(${SRCS} ${HEADERS})
|
||||
add_library(getopt ${SRCS} ${HEADERS})
|
||||
target_compile_definitions(getopt INTERFACE STATIC_GETOPT)
|
||||
target_include_directories(getopt INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
Reference in New Issue
Block a user