Move library header to include/ directory

pull/3/head
Roland Lutz 2015-03-02 19:06:59 +01:00
parent 2622684ed5
commit 413ab5f578
5 changed files with 6 additions and 6 deletions

View File

@ -4,13 +4,14 @@ ACLOCAL_AMFLAGS = -I ac-aux
SUBDIRS = src exposed
noinst_HEADERS = include/slvs.h
exposed = \
exposed/CDemo.c \
exposed/DOC.txt \
exposed/Makefile \
exposed/VbDemo.vb \
exposed/lib.cpp \
exposed/slvs.h
exposed/lib.cpp
EXTRA_DIST = \
$(exposed) \

View File

@ -18,7 +18,7 @@
# include <stdint.h>
#endif
#include "slvs.h"
#include <slvs.h>
static Slvs_System sys;

View File

@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS = subdir-objects
AM_CPPFLAGS = -DLIBRARY -I$(top_srcdir)/src
AM_CPPFLAGS = -DLIBRARY -I$(top_srcdir)/src -I$(top_srcdir)/include
AM_LDFLAGS = -L.
@ -16,7 +16,6 @@ CDemo_SOURCES = CDemo.c
libslvs_a_CPPFLAGS = $(AM_CPPFLAGS)
libslvs_a_SOURCES = \
slvs.h \
lib.cpp \
../src/util.cpp \
../src/entity.cpp \

View File

@ -6,7 +6,7 @@
//-----------------------------------------------------------------------------
#include "solvespace.h"
#define EXPORT_DLL
#include "slvs.h"
#include <slvs.h>
Sketch SK;
static System SYS;