mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 00:31:27 +00:00
[C++]
- Enable MSVC build of mesa, telnet, explorer and rosautotest CORE-6950 #resolve svn path=/trunk/; revision=59291
This commit is contained in:
parent
e9df952de3
commit
b6ce4e511a
7 changed files with 7 additions and 15 deletions
|
@ -10,9 +10,7 @@ add_subdirectory(netstat)
|
|||
add_subdirectory(nslookup)
|
||||
add_subdirectory(ping)
|
||||
add_subdirectory(route)
|
||||
if(NOT MSVC)
|
||||
add_subdirectory(telnet) # FIXME: fix msvc build
|
||||
endif()
|
||||
add_subdirectory(telnet)
|
||||
add_subdirectory(tracert)
|
||||
add_subdirectory(whois)
|
||||
add_subdirectory(wlanconf)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
set_cpp(WITH_STL)
|
||||
set_cpp(WITH_EXCEPTIONS WITH_STL)
|
||||
|
||||
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
|
||||
|
||||
|
@ -27,7 +27,7 @@ add_executable(telnet
|
|||
|
||||
set_module_type(telnet win32cui)
|
||||
add_pch(telnet src/precomp.h)
|
||||
add_importlibs(telnet ws2_32 user32 msvcrt kernel32)
|
||||
add_importlibs(telnet ws2_32 user32 msvcrt kernel32 ntdll)
|
||||
add_cd_file(TARGET telnet DESTINATION reactos/system32 FOR all)
|
||||
|
||||
if(NOT MSVC)
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
//#include <stdio.h>
|
||||
//#include <stdarg.h>
|
||||
//#include <string.h>
|
||||
//#include <locale.h>
|
||||
#include <locale.h>
|
||||
#include <io.h>
|
||||
#include <time.h>
|
||||
//#include <ctype.h>
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
|
||||
add_subdirectory(cmd)
|
||||
if(NOT MSVC)
|
||||
add_subdirectory(explorer)
|
||||
endif()
|
||||
add_subdirectory(explorer-new)
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
add_subdirectory(glu32)
|
||||
if(NOT MSVC)
|
||||
add_subdirectory(mesa)
|
||||
endif()
|
||||
add_subdirectory(mesa)
|
||||
add_subdirectory(opengl32)
|
||||
|
|
|
@ -5,9 +5,7 @@ add_subdirectory(apitests)
|
|||
#add_subdirectory(dxtest)
|
||||
add_subdirectory(kmtests)
|
||||
#add_subdirectory(regtests)
|
||||
if(NOT MSVC) # FIXME: msvc build
|
||||
add_subdirectory(rosautotest)
|
||||
endif()
|
||||
add_subdirectory(rosautotest)
|
||||
add_subdirectory(tests)
|
||||
#add_subdirectory(win32)
|
||||
add_subdirectory(winetests)
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <iomanip>
|
||||
|
||||
|
|
Loading…
Reference in a new issue