. . , , CMake, , - . , Boost.Jam, autoconf, .
, , , . , . , , , script.
CMake , Boost:
cmake_minimum_required (VERSION 2.8)
project (ExampleWithBoost)
find_package(Boost 1.46 COMPONENTS thread program_options filesystem REQUIRED)
include_directories(SYSTEM ${Boost_INCLUDE_DIR})
link_directories(${Boost_LIBRARY_DIRS})
add_executable(example_with_boost example_with_boost.cpp)
target_link_libraries(example_with_boost ${Boost_LIBRARIES})
cmake find_package script ( Boost CMake), ( ), , , . find_package , , CMake (, ).
, , "example_with_boost.cpp", . , , CMake ( , ). - , , , ( , , , - - IDE, , Visual Studio).