mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-21 12:40:04 +00:00
Moved API obfuscation to LaikaLib target
This commit is contained in:
parent
25c18db6bc
commit
ed96b75577
@ -30,7 +30,7 @@ if(RAWCMAKEBUILDTYPE STREQUAL "debug")
|
|||||||
set(LAIKA_DEBUG_BUILD on)
|
set(LAIKA_DEBUG_BUILD on)
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
# statically link debug libs for windows
|
# statically link debug libs for windows
|
||||||
message(STATUS "Adding MSVC Debug libs...")
|
message(STATUS "Adding MSVCRT Debug libs...")
|
||||||
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreadedDebug")
|
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreadedDebug")
|
||||||
else()
|
else()
|
||||||
message(STATUS "Adding sanitizer...")
|
message(STATUS "Adding sanitizer...")
|
||||||
@ -42,6 +42,7 @@ else()
|
|||||||
set(LAIKA_DEBUG_BUILD off)
|
set(LAIKA_DEBUG_BUILD off)
|
||||||
# statically link non-debug libs
|
# statically link non-debug libs
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
|
message(STATUS "Adding MSVCRT libs...")
|
||||||
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded")
|
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded")
|
||||||
endif ()
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#include "lconfig.h"
|
#include "lconfig.h"
|
||||||
#include "lerror.h"
|
#include "lerror.h"
|
||||||
#include "ltask.h"
|
#include "ltask.h"
|
||||||
#include "obf.h"
|
#include "lobf.h"
|
||||||
#include "persist.h"
|
#include "persist.h"
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include "lerror.h"
|
#include "lerror.h"
|
||||||
#include "lmem.h"
|
#include "lmem.h"
|
||||||
#include "lvm.h"
|
#include "lvm.h"
|
||||||
#include "obf.h"
|
#include "lobf.h"
|
||||||
#include "persist.h"
|
#include "persist.h"
|
||||||
|
|
||||||
HANDLE laikaB_mutex;
|
HANDLE laikaB_mutex;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* platform specific code for opening shells (pseudo consoles) on windows */
|
/* platform specific code for opening shells (pseudo consoles) on windows */
|
||||||
#include "bot.h"
|
#include "bot.h"
|
||||||
#include "obf.h"
|
#include "lobf.h"
|
||||||
#include "lerror.h"
|
#include "lerror.h"
|
||||||
#include "lmem.h"
|
#include "lmem.h"
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
@ -10,7 +10,15 @@ set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|||||||
# compile LaikaLib library
|
# compile LaikaLib library
|
||||||
file(GLOB_RECURSE LIBSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/**.c ${CMAKE_CURRENT_SOURCE_DIR}/vendor/**.c)
|
file(GLOB_RECURSE LIBSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/**.c ${CMAKE_CURRENT_SOURCE_DIR}/vendor/**.c)
|
||||||
file(GLOB_RECURSE LIBHEADERS ${CMAKE_CURRENT_SOURCE_DIR}/include/**.h)
|
file(GLOB_RECURSE LIBHEADERS ${CMAKE_CURRENT_SOURCE_DIR}/include/**.h)
|
||||||
add_library(LaikaLib STATIC ${LIBSOURCE} ${LIBHEADERS})
|
|
||||||
|
# include platform specific backends
|
||||||
|
if(WIN32)
|
||||||
|
file(GLOB_RECURSE LIBPLATFORMSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/win/**.c)
|
||||||
|
elseif(UNIX AND NOT APPLE)
|
||||||
|
file(GLOB_RECURSE LIBPLATFORMSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/lin/**.c)
|
||||||
|
endif ()
|
||||||
|
|
||||||
|
add_library(LaikaLib STATIC ${LIBSOURCE} ${LIBHEADERS} ${LIBPLATFORMSOURCE})
|
||||||
target_link_libraries(LaikaLib PUBLIC sodium)
|
target_link_libraries(LaikaLib PUBLIC sodium)
|
||||||
|
|
||||||
# make sure we're compiled *AFTER* lboxconfig.h has been generated
|
# make sure we're compiled *AFTER* lboxconfig.h has been generated
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "obf.h"
|
#include "lobf.h"
|
||||||
|
|
||||||
void laikaO_init()
|
void laikaO_init()
|
||||||
{
|
{
|
@ -1,4 +1,4 @@
|
|||||||
#include "obf.h"
|
#include "lobf.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Most of this file was adapted from
|
Most of this file was adapted from
|
Loading…
Reference in New Issue
Block a user