aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authoripkn <ipknhama@gmail.com>2015-09-04 15:19:45 +0900
committeripkn <ipknhama@gmail.com>2015-09-04 15:19:45 +0900
commite335618ba29436c26f0cfca670ee063b9c871538 (patch)
tree00cada2fe014035ebed0a77fa335dc53c63a8a3d /examples
parent21372f173c2964a51ab19590c7eabf4cd3203671 (diff)
parent5e5cabcea3b4d2d4f202359de2cce2cd49ceaff2 (diff)
downloadcrow-e335618ba29436c26f0cfca670ee063b9c871538.tar.gz
crow-e335618ba29436c26f0cfca670ee063b9c871538.zip
Merge pull request #71 from mnpk/master
Add helloworld example, Add coverage badge, Update README.md
Diffstat (limited to 'examples')
-rw-r--r--examples/CMakeLists.txt4
-rw-r--r--examples/helloworld.cpp13
2 files changed, 17 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index 6b42d49..1350865 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -7,6 +7,10 @@ target_link_libraries(example_vs ${Boost_LIBRARIES})
target_link_libraries(example_vs ${CMAKE_THREAD_LIBS_INIT})
else ()
+add_executable(helloworld helloworld.cpp)
+target_link_libraries(helloworld ${Boost_LIBRARIES})
+target_link_libraries(helloworld ${CMAKE_THREAD_LIBS_INIT})
+
add_executable(example example.cpp)
#target_link_libraries(example crow)
target_link_libraries(example ${Boost_LIBRARIES})
diff --git a/examples/helloworld.cpp b/examples/helloworld.cpp
new file mode 100644
index 0000000..8b77490
--- /dev/null
+++ b/examples/helloworld.cpp
@@ -0,0 +1,13 @@
+#include "crow.h"
+
+int main()
+{
+ crow::SimpleApp app;
+
+ CROW_ROUTE(app, "/")
+ ([]() {
+ return "Hello world!";
+ });
+
+ app.port(18080).run();
+}