Updated Asciinema & fixed windows debug builds

This commit is contained in:
CPunch 2022-06-04 10:26:25 -05:00
parent c4c5bc9ce5
commit a410a9ac15
2 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<a href="https://github.com/CPunch/Laika/blob/main/LICENSE.md"><img src="https://img.shields.io/github/license/CPunch/Laika" alt="License"></a>
</p>
[![asciicast](https://asciinema.org/a/492854.svg)](https://asciinema.org/a/492854)
[![asciicast](https://asciinema.org/a/499508.svg)](https://asciinema.org/a/499508)
Laika is a simple cross-platform Remote Access Toolkit stack for educational purposes. It allows encrypted communication across a custom binary protocol. The bot client supports both Windows & Linux environments, while the shell & CNC server specifically target Linux environments. Laika is meant to be small and discreet, Laika believes in hiding in plain sight.

View File

@ -14,7 +14,9 @@ file(GLOB_RECURSE BOTHEADERS ${CMAKE_CURRENT_SOURCE_DIR}/include/**.h)
# include platform specific backends
if(WIN32)
file(GLOB_RECURSE BOTPLATFORMSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/win/**.c)
set(BOTFLAGS WIN32)
if (NOT RAWCMAKEBUILDTYPE STREQUAL "debug")
set(BOTFLAGS WIN32)
endif ()
elseif(UNIX AND NOT APPLE)
file(GLOB_RECURSE BOTPLATFORMSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/lin/**.c)
set(BOTPLATFORMLIBS util)