mirror of
https://gitlab.com/manzerbredes/uciadapter.git
synced 2025-04-06 10:06:26 +02:00
Debug Windows platform
This commit is contained in:
parent
db4d104ed9
commit
2f8aaf2046
3 changed files with 5 additions and 2 deletions
|
@ -7,6 +7,7 @@ SET(COMPILE_PLATFORM UNIX)
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
SET(process src/ProcessWindows.cpp)
|
SET(process src/ProcessWindows.cpp)
|
||||||
SET(COMPILE_PLATFORM WIN32)
|
SET(COMPILE_PLATFORM WIN32)
|
||||||
|
SET(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
||||||
endif()
|
endif()
|
||||||
add_library(uciadapter SHARED src/UCI.cpp ${process})
|
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/UCI.hpp.in ${UCIADAPTER_INCLUDE_DIR}/UCI.hpp)
|
||||||
configure_file(src/Process.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
|
configure_file(src/Process.hpp ${UCIADAPTER_INCLUDE_DIR} COPYONLY)
|
||||||
configure_file(src/ProcessLinux.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})
|
include_directories(${UCIADAPTER_INCLUDE_DIR})
|
||||||
|
|
||||||
# Tests
|
# Tests
|
||||||
|
|
|
@ -42,7 +42,7 @@ void ProcessWindows::CreateChildProcess(std::string engine_path)
|
||||||
|
|
||||||
// If an error occurs, exit the application.
|
// If an error occurs, exit the application.
|
||||||
if (!bSuccess)
|
if (!bSuccess)
|
||||||
ErrorExit(TEXT("CreateProcess"));
|
throw FailedToStartEngine();
|
||||||
else {
|
else {
|
||||||
// Close handles to the child process and its primary thread.
|
// Close handles to the child process and its primary thread.
|
||||||
// Some applications might keep these handles to monitor the status
|
// Some applications might keep these handles to monitor the status
|
||||||
|
@ -90,7 +90,6 @@ void ProcessWindows::ErrorExit(PTSTR lpszFunction)
|
||||||
|
|
||||||
ProcessWindows::ProcessWindows() {
|
ProcessWindows::ProcessWindows() {
|
||||||
|
|
||||||
printf("\n->Start of parent execution.\n");
|
|
||||||
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
|
saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
|
||||||
saAttr.bInheritHandle = TRUE;
|
saAttr.bInheritHandle = TRUE;
|
||||||
saAttr.lpSecurityDescriptor = NULL;
|
saAttr.lpSecurityDescriptor = NULL;
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
|
#ifndef @COMPILE_PLATFORM@
|
||||||
#define @COMPILE_PLATFORM@
|
#define @COMPILE_PLATFORM@
|
||||||
|
#endif
|
||||||
#ifdef UNIX
|
#ifdef UNIX
|
||||||
#include "ProcessLinux.hpp"
|
#include "ProcessLinux.hpp"
|
||||||
#define INIT_PROCESS(p) \
|
#define INIT_PROCESS(p) \
|
||||||
|
|
Loading…
Add table
Reference in a new issue