diff options
Diffstat (limited to 'libs/system')
-rw-r--r-- | libs/system/meta/libraries.json | 11 | ||||
-rw-r--r-- | libs/system/test/config_test.cpp | 3 |
2 files changed, 13 insertions, 1 deletions
diff --git a/libs/system/meta/libraries.json b/libs/system/meta/libraries.json new file mode 100644 index 000000000..90d121825 --- /dev/null +++ b/libs/system/meta/libraries.json @@ -0,0 +1,11 @@ +{ + "key": "system", + "name": "System", + "authors": [ + "Beman Dawes" + ], + "description": "Operating system support, including the diagnostics support that will be part of the C++0x standard library.", + "category": [ + "System" + ] +} diff --git a/libs/system/test/config_test.cpp b/libs/system/test/config_test.cpp index da637c3f5..eef8ab4ec 100644 --- a/libs/system/test/config_test.cpp +++ b/libs/system/test/config_test.cpp @@ -41,7 +41,8 @@ int main() std::cout << "BOOST_POSIX_API is not defined" << std::endl; #endif #ifdef BOOST_PLAT_WINDOWS_DESKTOP - std::cout << "BOOST_PLAT_WINDOWS_DESKTOP is defined" << std::endl; + std::cout << "BOOST_PLAT_WINDOWS_DESKTOP is defined as " + << BOOST_PLAT_WINDOWS_DESKTOP << std::endl; #else std::cout << "BOOST_PLAT_WINDOWS_DESKTOP is not defined" << std::endl; #endif |