You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
368 B
17 lines
368 B
cmake_minimum_required (VERSION 2.6)
|
|
project (PROJECT_WEBFISH)
|
|
|
|
set (CXX_FLAGS "-ggdb")
|
|
add_definitions(${CXX_FLAGS})
|
|
|
|
# set (CMAKE_CXX_COMPILER "/usr/bin/g++-5.1.0")
|
|
# set (CMAKE_CXX_COMPILER "/usr/bin/clang++-3.6.0")
|
|
|
|
add_subdirectory (cpp_utils/lib/cpp_utils)
|
|
|
|
include_directories(cpp_utils/lib/)
|
|
|
|
add_executable (webfish main.cpp)
|
|
|
|
target_link_libraries(CppUtils)
|