mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 16:19:42 +00:00
[CMAKE]: Start supporting building the CRT.
svn path=/branches/cmake-bringup/; revision=48258
This commit is contained in:
parent
844fdca239
commit
d51dc0e932
2 changed files with 41 additions and 12 deletions
15
lib/sdk/crt/CMakeLists.txt
Normal file
15
lib/sdk/crt/CMakeLists.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
include_directories(.)
|
||||
include_directories(./include)
|
||||
|
||||
add_definitions(-D__MINGW_IMPORT=extern)
|
||||
add_definitions(-DUSE_MSVCRT_PREFIX)
|
||||
add_definitions(-D_MSVCRT_LIB_)
|
||||
add_definitions(-D_MSVCRT_)
|
||||
add_definitions(-D_MT)
|
||||
add_definitions(-D_CRTBLD)
|
||||
|
||||
|
||||
file(GLOB_RECURSE SOURCE "*.c")
|
||||
|
||||
add_library(crt ${SOURCE})
|
Loading…
Add table
Add a link
Reference in a new issue