libfreerdp-core: added cmake script

This commit is contained in:
Marc-André Moreau 2011-06-30 22:20:39 -04:00
parent 7de0d21feb
commit cfbb6c286c
6 changed files with 21 additions and 13 deletions

View File

@ -28,3 +28,4 @@ add_subdirectory(libfreerdp-utils)
add_subdirectory(libfreerdp-kbd)
add_subdirectory(libfreerdp-gdi)
#add_subdirectory(libfreerdp-core)

View File

@ -0,0 +1,20 @@
# libfreerdp-core
include_directories(.)
include_directories(../include)
add_definitions(-DL_ENDIAN=1)
add_definitions(-DEXT_PATH="/usr/lib/freerdp/extensions")
set(LIBFREERDP_CORE_SRCS
nego.c
nego.h
credssp.c
credssp.h
ntlmssp.c
ntlmssp.h
)
add_library(freerdp-core SHARED ${LIBFREERDP_CORE_SRCS})
install(TARGETS freerdp-core DESTINATION lib)

View File

@ -17,15 +17,7 @@
* limitations under the License.
*/
#include "frdp.h"
#include "rdp.h"
#include "tls.h"
#include "asn1.h"
#include "security.h"
#include "stream.h"
#include "tcp.h"
#include "mcs.h"
#include "iso.h"
#ifndef _WIN32
#include <unistd.h>
#endif

View File

@ -17,9 +17,6 @@
* limitations under the License.
*/
#include "frdp.h"
#include "rdp.h"
#include "tcp.h"
#include "stream.h"
#include <freerdp/utils/memory.h>

View File

@ -20,7 +20,6 @@
#ifndef __NEGO_H
#define __NEGO_H
#include "frdp.h"
#include "stream.h"
#include "network.h"

View File

@ -20,7 +20,6 @@
#ifndef __NTLMSSP_H
#define __NTLMSSP_H
#include "security.h"
#include "credssp.h"
#include <freerdp/utils/debug.h>