mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[CRT]
- Introduce an strtol static library that drivers can use to get access to strtol-style functions CORE-11184 svn path=/trunk/; revision=71481
This commit is contained in:
parent
fd9cdcb64f
commit
d317d4fbcc
1 changed files with 11 additions and 0 deletions
|
@ -55,3 +55,14 @@ add_dependencies(memcmp psdk)
|
||||||
add_library(getopt misc/getopt.c)
|
add_library(getopt misc/getopt.c)
|
||||||
add_target_compile_definitions(getopt _DLL __USE_CRTIMP)
|
add_target_compile_definitions(getopt _DLL __USE_CRTIMP)
|
||||||
add_dependencies(getopt psdk)
|
add_dependencies(getopt psdk)
|
||||||
|
|
||||||
|
add_library(strtol
|
||||||
|
string/ctype.c
|
||||||
|
string/iswctype.c
|
||||||
|
string/strtoi64.c
|
||||||
|
string/strtol.c
|
||||||
|
string/strtoul.c
|
||||||
|
string/strtoull.c
|
||||||
|
string/wctype.c)
|
||||||
|
add_target_compile_definitions(strtol _LIBCNT_)
|
||||||
|
add_dependencies(strtol psdk)
|
||||||
|
|
Loading…
Reference in a new issue