forked fromglynos/cpp-netlib
- Notifications
You must be signed in to change notification settings - Fork425
Restructure dirs#181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Restructure dirs#181
Changes from1 commit
Commits
Show all changes
5 commits Select commitHold shift + click to select a range
c246806 Refactored thread_pool from the utils sub-directory (and namespace) i…
glynos1d158ca Removed checks for c++0x as they are no longer used.
glynosfeecbc2 Moved http subdirectory; includes version.hpp and constants.
glynos65b99b8 Removed http code from old subdirectory.
glynos6f51e04 Moved mime to a separate subdirectory.
glynosFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
PrevPrevious commit
Moved mime to a separate subdirectory.
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commit6f51e0433c8cfc939d3f117d4edc774acdc165e4
There are no files selected for viewing
1 change: 1 addition & 0 deletionsCMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletionslibs/mime/test/CMakeLists.txt
This file was deleted.
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
10 changes: 10 additions & 0 deletionsmime/CMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Copyright (c) Glyn Matthews 2012. | ||
| # Distributed under the Boost Software License, Version 1.0. | ||
| # (See accompanying file LICENSE_1_0.txt or copy at | ||
| # http://www.boost.org/LICENSE_1_0.txt) | ||
| if(CPP-NETLIB_BUILD_TESTS) | ||
| enable_testing() | ||
| add_subdirectory(test) | ||
| endif(CPP-NETLIB_BUILD_TESTS) |
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.
21 changes: 21 additions & 0 deletionsmime/test/CMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # Copyright (c) Glyn Matthews 2012. | ||
| # Distributed under the Boost Software License, Version 1.0. | ||
| # (See accompanying file LICENSE_1_0.txt or copy at | ||
| # http://www.boost.org/LICENSE_1_0.txt) | ||
| if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| set(CPP-NETLIB_CXXFLAGS "-Wall -std=c++11") | ||
| elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| CHECK_CXX_COMPILER_FLAG(-std=c++11 HAVE_STD11) | ||
| set(CPP-NETLIB_CXXFLAGS "-Wall -std=c++11 -stdlib=libc++") | ||
| set(CPP-NETLIB_CXXFLAGS "-Wall -std=c++11 -stdlib=libc++") | ||
| endif() | ||
| include_directories(${CPP-NETLIB_SOURCE_DIR}/mime/src) | ||
| if ( Boost_FOUND ) | ||
| add_executable ( mime-roundtrip mime-roundtrip.cpp ) | ||
| target_link_libraries ( mime-roundtrip ) | ||
| add_test ( mime-roundtrip mime-roundtrip ) | ||
| endif () | ||
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.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.