-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
g2log.hpp is kept as a helper include. It will pull in the most frequ…
…ent include files All other are under g3log. Example: #include <g3log/time.hpp> #include <g3log/g3log.hpp> etc This makes sure that the package manager (to be used soon) does NOT clutter any /usr/local/include space instead all the includes will be in /usr/local/include/g3log (or similar)
- Loading branch information
Kjell Hedstrom
authored and
Kjell Hedstrom
committed
Jul 16, 2015
1 parent
94db9bb
commit 6750efe
Showing
67 changed files
with
2,900 additions
and
2,855 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,12 +1,11 @@ | ||
# g3log is a KjellKod Logger | ||
# 2010 @author Kjell Hedström, [email protected] | ||
# ================================================================== | ||
# 2010 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own | ||
# risk and comes with no warranties. | ||
# | ||
# This code is yours to share, use and modify with no strings attached | ||
# and no restrictions or obligations. | ||
# =================================================================== | ||
# ========================================================================== | ||
# 2010 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes | ||
# with no warranties. This code is yours to share, use and modify with no | ||
# strings attached and no restrictions or obligations. | ||
# | ||
# For more information see g3log/LICENSE or refer refer to http://unlicense.org | ||
# ============================================================================*/ | ||
|
||
|
||
# Below are details for compiling on Windows and Linux | ||
# by default only an example g3log binary is created | ||
|
@@ -53,14 +52,6 @@ set(CMAKE_BUILD_TYPE Release) | |
|
||
project (g3log) | ||
|
||
MESSAGE("Run 'make clean-cmake-files' to purge your build directory of CMake generated cache files") | ||
add_custom_target(clean-cmake-files | ||
COMMAND ${CMAKE_COMMAND} -P ${g3log_SOURCE_DIR}/CleanAll.cmake | ||
) | ||
|
||
|
||
|
||
|
||
# Detect 64 or 32 bit | ||
if (CMAKE_SIZEOF_VOID_P EQUAL 8) | ||
# 64-bit project | ||
|
@@ -132,6 +123,17 @@ endif() | |
# INCLUDE (${g3log_SOURCE_DIR}/CPackLists.txt) | ||
|
||
|
||
MESSAGE("\n\n | ||
******************************************************************* | ||
Please do 'make clean-cmake-files' before next cmake generation. | ||
It is a good idea to purge your build directory of CMake | ||
generated cache files | ||
******************************************************************* | ||
") | ||
add_custom_target(clean-cmake-files | ||
COMMAND ${CMAKE_COMMAND} -P ${g3log_SOURCE_DIR}/CleanAll.cmake | ||
) | ||
|
||
|
||
|
||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.