Skip to content

Latest commit

 

History

History

crow

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

crow

Crow is C++ microframework for web, it serves as a web server.

installation

First clone ipkn/crow and replace its CMakeLists.txt with CMakeLists.txt from this repo.

Install dependencies:

sudo apt-get install build-essential libtcmalloc-minimal4 && sudo ln -s /usr/lib/libtcmalloc_minimal.so.4 /usr/lib/libtcmalloc_minimal.so

And then:

mkdir build
cd build
cmake ..
make

use it in another project

Reference to undefined reference to symbol 'pthread_sigmask@@GLIBC_2.2.5' 解决方法.

In CMakeLists.txt:

find_package(Threads)

include_directories(<crow_dir>/amalgamate)
# boost is required by crow
link_directories(<boost_installation_dir>/lib)
link_libraries(boost_system boost_thread)

add_executable(<exe_name> ./xxx.cpp)
target_link_libraries(<exe_name> ${CMAKE_THREAD_LIBS_INIT})