Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
Christian Burger | 840ffdd3bf |
2
App.hpp
2
App.hpp
|
@ -6,7 +6,7 @@
|
|||
#ifndef A3B2AE4E_0A39_468C_8CCA_E6508166702A
|
||||
#define A3B2AE4E_0A39_468C_8CCA_E6508166702A
|
||||
|
||||
#include <cursesapp.h>
|
||||
#include <ncursesw/cursesapp.h>
|
||||
|
||||
namespace krikkel::NCursesPtyWindow
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef F0E30ED4_3883_40D6_A6EE_08BA4DF9E92E
|
||||
#define F0E30ED4_3883_40D6_A6EE_08BA4DF9E92E
|
||||
|
||||
#include <cursesw.h>
|
||||
#include <ncursesw/cursesw.h>
|
||||
#include <vterm_keycodes.h>
|
||||
|
||||
namespace krikkel::NCursesPtyWindow
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "SingleUserInput.hpp"
|
||||
|
||||
#include <cursesw.h>
|
||||
#include <ncursesw/cursesw.h>
|
||||
#include <pty.h>
|
||||
#include <vterm.h>
|
||||
#include <string>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# @author Christian Burger <christian@krikkel.de>
|
||||
|
||||
find_path(GSL_INCLUDE_DIR "gsl")
|
||||
find_path(GSL_INCLUDE_DIR "gsl/gsl")
|
||||
if(GSL_INCLUDE_DIR STREQUAL "GSL_INCLUDE_DIR-NOTFOUND")
|
||||
message(SEND_ERROR "Microsoft GSL not found.")
|
||||
else()
|
||||
|
|
|
@ -22,4 +22,6 @@ if(LIBVTERM_LIBRARY STREQUAL "LIBVTERM_LIBRARY-NOTFOUND")
|
|||
ExternalProject_Get_property(libvtermProject SOURCE_DIR)
|
||||
set(LIBVTERM_LIBRARY "${SOURCE_DIR}/.libs/libvterm.a")
|
||||
include_directories(SYSTEM "${SOURCE_DIR}/include")
|
||||
else()
|
||||
message(WARNING "libvterm found — hopefully the right version")
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue