diff options
author | randomdan <randomdan@localhost> | 2013-04-04 23:16:53 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2013-04-04 23:16:53 +0000 |
commit | 4ef47aebfa50df1f0fed8a37565a620610512531 (patch) | |
tree | 34420efc7a92cea00f9b904ec71a7b69895ad954 | |
parent | Fix pch header inclusions and missing headers for no-pch building (diff) | |
download | project2-4ef47aebfa50df1f0fed8a37565a620610512531.tar.bz2 project2-4ef47aebfa50df1f0fed8a37565a620610512531.tar.xz project2-4ef47aebfa50df1f0fed8a37565a620610512531.zip |
Rename p2web library to p2cgicommon
-rw-r--r-- | project2/cgi/Jamfile.jam | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/project2/cgi/Jamfile.jam b/project2/cgi/Jamfile.jam index 63844b0..b5725d0 100644 --- a/project2/cgi/Jamfile.jam +++ b/project2/cgi/Jamfile.jam @@ -16,7 +16,7 @@ cpp-pch pch : pch.hpp : <library>boost_filesystem <library>../xml//p2xml ; -lib p2web : +lib p2cgicommon : pch [ glob cgi*.cpp ] : @@ -36,7 +36,7 @@ lib p2web : exe p2cgi : p2webCgi.cpp : - <library>p2web + <library>p2cgicommon <include>../../libmisc ; @@ -45,14 +45,14 @@ exe p2fcgi : fcgi++ fcgi : - <library>p2web + <library>p2cgicommon <include>../../libmisc ; exe testCgi : testCgi.cpp : - <library>p2web + <library>p2cgicommon <include>../../libmisc ; |