Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
95355e1b
Commit
95355e1b
authored
Aug 24, 2011
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4 from mephi42/master
Autotools build changes
parents
5bb04e19
2db41543
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
7 deletions
+28
-7
Makefile.am
Makefile.am
+10
-4
configure.ac
configure.ac
+6
-2
libcppa.pc.in
libcppa.pc.in
+11
-0
unit_testing/Makefile.am
unit_testing/Makefile.am
+1
-1
No files found.
Makefile.am
View file @
95355e1b
...
...
@@ -53,9 +53,13 @@ libcppa_la_SOURCES = \
src/yielding_message_queue.cpp
\
src/yield_interface.cpp
library_includedir
=
$(includedir)
/cppa-0.1/cppa
if
VERSIONED_INCLUDE_DIR
library_includedir
=
$(includedir)
/cppa/
$(PACKAGE_VERSION)
/
else
library_includedir
=
$(includedir)
/
endif
library_include_HEADERS
=
\
nobase_
library_include_HEADERS
=
\
cppa/actor_behavior.hpp
\
cppa/actor.hpp
\
cppa/actor_proxy.hpp
\
...
...
@@ -192,7 +196,9 @@ library_include_HEADERS = \
cppa/util/wrapped.hpp
libcppa_la_CXXFLAGS
=
--std
=
c++0x
-pedantic
-Wall
-Wextra
libcppa_la_LDFLAGS
=
-release
0.1
$(BOOST_CPPFLAGS)
libcppa_la_LDFLAGS
=
-release
$(PACKAGE_VERSION)
$(BOOST_CPPFLAGS)
SUBDIRS
=
.
unit_testing
pkgconfigdir
=
$(libdir)
/pkgconfig
pkgconfig_DATA
=
libcppa.pc
SUBDIRS
=
.
unit_testing
configure.ac
View file @
95355e1b
AC_PREREQ([2.6])
AC_INIT([
hamcast], [0.4
])
AC_INIT([
libcppa], [0.1
])
AM_INIT_AUTOMAKE(@PACKAGE_NAME@, @PACKAGE_VERSION@)
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src])
...
...
@@ -39,5 +39,9 @@ AS_IF(
CPPFLAGS="$ORIGINAL_CPPFLAGS"
AC_CONFIG_FILES([Makefile unit_testing/Makefile])
# environment
AC_ARG_VAR([NO_VERSIONED_INCLUDE_DIR], [set this to 1 in order to install headers into <prefix>/cppa/ rather than into <prefix>/cppa/<version>/cppa/])
AM_CONDITIONAL([VERSIONED_INCLUDE_DIR], [test "x$NO_VERSIONED_INCLUDE_DIR" != "x1"])
AC_CONFIG_FILES([Makefile unit_testing/Makefile libcppa.pc])
AC_OUTPUT
libcppa.pc.in
0 → 100644
View file @
95355e1b
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: libcppa
Description: C++ actors library.
#Requires:
Version: @PACKAGE_VERSION@
Libs: -L${libdir} -lcppa
Cflags: -I${includedir}/cppa/@PACKAGE_VERSION@
unit_testing/Makefile.am
View file @
95355e1b
...
...
@@ -20,7 +20,7 @@ unit_tests_SOURCES = hash_of.cpp \
test__type_list.cpp
\
test__uniform_type.cpp
unit_tests_DEPENDENCIES
=
../.libs/libcppa.
dylib
unit_tests_DEPENDENCIES
=
../.libs/libcppa.
la
AM_CPPFLAGS
=
-I
../
unit_tests_CXXFLAGS
=
--std
=
c++0x
-pedantic
-Wall
-Wextra
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment