automake windows dll

1427 단어 automake
최근libtool 도구는 다양한 라이브러리 파일을 생성할 수 있습니다.정적 라이브러리와 동적 라이브러리를 포함합니다.이거 쓰면 돼.
 
예제 configure.ac
 
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.68])
AC_INIT([librfc], [1.0], [http://www.sourceforge.net])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_CONFIG_SRCDIR([src/httpuriparser.cpp])
AC_CONFIG_HEADERS([config.h])

# Checks for programs.
AC_PROG_CXX
LT_INIT

# Checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_TYPE_SIZE_T

# Checks for library functions.

AC_CONFIG_FILES([Makefile])
AC_OUTPUT
 
 
 
예제 Makefile.am
AM_CPPFLAGS = --std=c++11
lib_LTLIBRARIES = librfc.la
librfc_la_SOURCES = \
./src/httpuriparser.cpp \
./src/uri.cpp

librfc_la_LDFLAGS = -no-undefined

noinst_PROGRAMS = test1
test1_SOURCES = ./test/test1.cpp
test1_LDADD = librfc.la

pkginclude_HEADERS = \
./src/httpuriparser.hpp \
./src/iuriparser.hpp \
./src/rfc.hpp \
./src/uri.hpp

 
이렇게 하면librfc의 동적 라이브러리를 생성할 수도 있고librfc의 정적 라이브러리를 생성할 수도 있다

좋은 웹페이지 즐겨찾기