diff --git a/cmake/Cppdap.cmake b/cmake/Cppdap.cmake index 3ef146a7d..77cc12ccf 100644 --- a/cmake/Cppdap.cmake +++ b/cmake/Cppdap.cmake @@ -37,6 +37,8 @@ if(NOT EXISTS ${CPPDAP_LIB}) INSTALL_COMMAND ${CMAKE_COMMAND} --build . --config Release --target install BUILD_BYPRODUCTS ${CPPDAP_LIB} ) +else() + message(" cppdap already built") endif() add_library(cppdap STATIC IMPORTED) diff --git a/docs/docs.polserver.com/pol100/corechanges.xml b/docs/docs.polserver.com/pol100/corechanges.xml index 7c8994fcf..ef485f34b 100644 --- a/docs/docs.polserver.com/pol100/corechanges.xml +++ b/docs/docs.polserver.com/pol100/corechanges.xml @@ -2,13 +2,13 @@
Latest Core Changes - 01-22-2024 + 01-23-2024
- 01-22-2024 + 01-23-2024 Kevin: - POL now exposes a Debug Adapter Protocol (DAP) server to provide debugging support. Any IDE or tooling that implements DAP can utilize this new debugging server. See pol.cfg setting DAPDebugPort. + POL now exposes a Debug Adapter Protocol (DAP) server to provide debugging support. Any IDE or tooling that implements DAP, such as the vscode-escript extension (https://github.com/polserver/vscode-escript), can utilize this new debugging server. See pol.cfg setting DAPDebugPort. 01-18-2024 diff --git a/pol-core/doc/core-changes.txt b/pol-core/doc/core-changes.txt index eb2471929..2eb41f700 100644 --- a/pol-core/doc/core-changes.txt +++ b/pol-core/doc/core-changes.txt @@ -1,6 +1,6 @@ -- POL100.2.0 -- -01-22-2024 Kevin: - Added: POL now exposes a Debug Adapter Protocol (DAP) server to provide debugging support. Any IDE or tooling that implements DAP can utilize this new debugging server. See pol.cfg setting DAPDebugPort. +01-23-2024 Kevin: + Added: POL now exposes a Debug Adapter Protocol (DAP) server to provide debugging support. Any IDE or tooling that implements DAP, such as the vscode-escript extension (https://github.com/polserver/vscode-escript), can utilize this new debugging server. See pol.cfg setting DAPDebugPort. 01-18-2024 Kevin: Added: Escript keyword `uninit` to represent the uninitialized value. Added: Escript keywords `true` and `false`, equivalent to `Boolean(1)` and `Boolean(0)` respectively.