automake windows dll
1427 단어 automake
예제 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의 정적 라이브러리를 생성할 수도 있다
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
설치 m4, autoconf, automake\ # \ # 설치 m4 \ # \ # \ # autoconf 설치 \ # \ # # automake 설치 \ # \ # \ # libtool 설치...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.