Author: tfaber
Date: Wed Jun 1 07:09:50 2016
New Revision: 71481
URL:
http://svn.reactos.org/svn/reactos?rev=71481&view=rev
Log:
[CRT]
- Introduce an strtol static library that drivers can use to get access to strtol-style
functions
CORE-11184
Modified:
trunk/reactos/sdk/lib/crt/CMakeLists.txt
Modified: trunk/reactos/sdk/lib/crt/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/lib/crt/CMakeLists.txt…
==============================================================================
--- trunk/reactos/sdk/lib/crt/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/sdk/lib/crt/CMakeLists.txt [iso-8859-1] Wed Jun 1 07:09:50 2016
@@ -55,3 +55,14 @@
add_library(getopt misc/getopt.c)
add_target_compile_definitions(getopt _DLL __USE_CRTIMP)
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)