Initial checkin of my attempt at TLS with NSS, may become IRC client

This commit is contained in:
Darren VanBuren 2017-07-06 14:46:18 -07:00
commit c422d26a63
6 changed files with 400 additions and 0 deletions

17
CMakeLists.txt Normal file
View file

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.7)
project(NSPRFun)
set(CMAKE_CXX_STANDARD 11)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules/")
find_package(NSPR REQUIRED)
find_package(NSS REQUIRED)
find_package(FOX REQUIRED)
include_directories(${NSPR_INCLUDE_DIRS} ${NSS_INCLUDE_DIRS} ${FOX_INCLUDE_DIR})
set(SOURCE_FILES main.cpp)
add_executable(NSPRFun ${SOURCE_FILES})
target_link_libraries(NSPRFun ${NSPR_LIBRARIES} ${NSS_LIBRARIES} ${FOX_LIBRARY})