You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message(FATAL_ERROR "You cannot build in a source directory (or any directory with a CMakeLists.txt file). Please make a build subdirectory. Feel free to remove CMakeCache.txt and CMakeFiles.")
endif()
project(
ircc
VERSION 0.7.0
DESCRIPTION "Barebones IRC client"
LANGUAGES CXX
)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif()
if(NOT FRONTEND_LIBRARY)
set(FRONTEND_LIBRARY frontend-ncurses)
message("FRONTEND_LIBRARY undefined, defaulting to '${FRONTEND_LIBRARY}'")