Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ endif()
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} " )
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pthread" )

#--- Declare options -----------------------------------------------------------
option(kseta_documentation "Whether or not to create doxygen doc target.")
Expand Down Expand Up @@ -73,6 +75,7 @@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/LICENSE

#--- project specific subdirectories -------------------------------------------
add_subdirectory(mail)
add_subdirectory(modernsyntax)

#--- create uninstall target ---------------------------------------------------
include(cmake/ksetaUninstall.cmake)
5 changes: 4 additions & 1 deletion modernsyntax/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
#Ops, did I forget adding a proper CMake file?
add_executable(classical_looping classical_looping.cpp)
add_executable(range_looping range_looping.cpp)
add_executable(smart_pointers smart_pointers.cpp)
add_executable(lambda lambda.cpp)