mirror of https://github.com/AxioDL/logvisor.git
Target rename
This commit is contained in:
parent
55b81ec091
commit
d60d5ea21a
|
@ -1,8 +1,8 @@
|
|||
include_directories(include)
|
||||
add_library(LogVisor
|
||||
lib/LogVisor.cpp
|
||||
include/LogVisor/LogVisor.hpp)
|
||||
add_library(log-visor
|
||||
lib/log.cpp
|
||||
include/log-visor/log.hpp)
|
||||
|
||||
set(LOG_VISOR_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include CACHE PATH "LogVisor include path" FORCE)
|
||||
set(LOG_VISOR_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include CACHE PATH "log-visor include path" FORCE)
|
||||
|
||||
install(DIRECTORY include/LogVisor DESTINATION include/LogVisor)
|
||||
install(DIRECTORY include/log-visor DESTINATION include/log-visor)
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include <unordered_map>
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
#include "LogVisor/LogVisor.hpp"
|
||||
#include "log-visor/log.hpp"
|
||||
|
||||
/* ANSI sequences */
|
||||
#define RED "\x1b[1;31m"
|
Loading…
Reference in New Issue