Debug Windows platform

This commit is contained in:
Loic Guegan 2022-02-03 08:27:56 +01:00
parent db4d104ed9
commit 2f8aaf2046
3 changed files with 5 additions and 2 deletions

View file

@ -7,6 +7,7 @@ SET(COMPILE_PLATFORM UNIX)
if(WIN32)
SET(process src/ProcessWindows.cpp)
SET(COMPILE_PLATFORM WIN32)
SET(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
endif()
add_library(uciadapter SHARED src/UCI.cpp ${process})
@ -17,6 +18,7 @@ file(MAKE_DIRECTORY ${UCIADAPTER_INCLUDE_DIR})
configure_file(src/UCI.hpp.in ${UCIADAPTER_INCLUDE_DIR}/UCI.hpp)
configure_file(src/Process.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
configure_file(src/ProcessLinux.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
configure_file(src/ProcessWindows.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
include_directories(${UCIADAPTER_INCLUDE_DIR})
# Tests

View file

@ -42,7 +42,7 @@ void ProcessWindows::CreateChildProcess(std::string engine_path)
// If an error occurs, exit the application.
if (!bSuccess)
ErrorExit(TEXT("CreateProcess"));
throw FailedToStartEngine();
else {
// Close handles to the child process and its primary thread.
// Some applications might keep these handles to monitor the status
@ -90,7 +90,6 @@ void ProcessWindows::ErrorExit(PTSTR lpszFunction)
ProcessWindows::ProcessWindows() {
printf("\n->Start of parent execution.\n");
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
saAttr.bInheritHandle = TRUE;
saAttr.lpSecurityDescriptor = NULL;

View file

@ -1,4 +1,6 @@
#ifndef @COMPILE_PLATFORM@
#define @COMPILE_PLATFORM@
#endif
#ifdef UNIX
#include "ProcessLinux.hpp"
#define INIT_PROCESS(p) \