Skip to content

Commit 2c0ab85

Browse files
committedApr 12, 2016
Moved headers to a separate include subdirectory.
1 parent beb37d4 commit 2c0ab85

14 files changed

+5
-17
lines changed
 

‎CMakeLists.txt

+2-5
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ project(Uri)
99

1010
find_package(Threads REQUIRED)
1111

12-
include_directories(${Uri_SOURCE_DIR}/src)
13-
1412
set(CMAKE_VERBOSE_MAKEFILE true)
1513

1614
if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU)
@@ -47,6 +45,8 @@ foreach(flag_var
4745
endif(${flag_var} MATCHES "/MD")
4846
endforeach(flag_var)
4947

48+
include_directories(${Uri_SOURCE_DIR}/src ${Uri_SOURCE_DIR}/include)
49+
5050
add_subdirectory(src)
5151

5252
# Testing
@@ -68,6 +68,3 @@ if (DOXYGEN_FOUND)
6868
set(CPP-NETLIB_GENERATE_DOCS ON)
6969
endif()
7070
endif(DOXYGEN_FOUND)
71-
72-
#propagate sources to parent scope for one-lib-build
73-
set(Uri_SRCS ${Uri_SRCS} PARENT_SCOPE)

‎Doxyfile.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ FULL_PATH_NAMES = YES
128128
# If left blank the directory from which doxygen is run is used as the
129129
# path to strip.
130130

131-
STRIP_FROM_PATH = @CMAKE_CURRENT_SOURCE_DIR@/src/
131+
STRIP_FROM_PATH = @CMAKE_CURRENT_SOURCE_DIR@/include/
132132

133133
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
134134
# the path mentioned in the documentation of a class, which tells
@@ -626,7 +626,7 @@ WARN_LOGFILE =
626626
# directories like "/usr/src/myproject". Separate the files or directories
627627
# with spaces.
628628

629-
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/src/network
629+
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/include
630630

631631
# This tag can be used to specify the character encoding of the source files
632632
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
@@ -658,7 +658,7 @@ RECURSIVE = YES
658658
# Note that relative paths are relative to the directory from which doxygen is
659659
# run.
660660

661-
EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/src/network/uri/detail
661+
EXCLUDE = @CMAKE_CURRENT_SOURCE_DIR@/include/network/uri/detail
662662

663663
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
664664
# directories that are symbolic links (a Unix file system feature) are excluded
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎src/CMakeLists.txt

-9
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,6 @@ if(${CMAKE_CXX_COMPILER_ID} MATCHES Clang)
2121
target_link_libraries(network-uri "c++")
2222
endif()
2323
endif()
24-
install(
25-
TARGETS
26-
network-uri
27-
DESTINATION lib
28-
)
29-
30-
install(DIRECTORY network
31-
DESTINATION include
32-
)
3324

3425
#propagate sources to parent scope for one-lib-build
3526
set(Uri_SRCS ${Uri_SRCS} PARENT_SCOPE)

0 commit comments

Comments
 (0)
Please sign in to comment.