mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-22 04:50:06 +00:00
Updated Asciinema & fixed windows debug builds
This commit is contained in:
parent
c4c5bc9ce5
commit
a410a9ac15
@ -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>
|
<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>
|
</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.
|
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.
|
||||||
|
|
||||||
|
@ -14,7 +14,9 @@ file(GLOB_RECURSE BOTHEADERS ${CMAKE_CURRENT_SOURCE_DIR}/include/**.h)
|
|||||||
# include platform specific backends
|
# include platform specific backends
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
file(GLOB_RECURSE BOTPLATFORMSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/win/**.c)
|
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)
|
elseif(UNIX AND NOT APPLE)
|
||||||
file(GLOB_RECURSE BOTPLATFORMSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/lin/**.c)
|
file(GLOB_RECURSE BOTPLATFORMSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/lin/**.c)
|
||||||
set(BOTPLATFORMLIBS util)
|
set(BOTPLATFORMLIBS util)
|
||||||
|
Loading…
Reference in New Issue
Block a user