Initial checkin of my attempt at TLS with NSS, may become IRC client
This commit is contained in:
commit
c422d26a63
6 changed files with 400 additions and 0 deletions
17
CMakeLists.txt
Normal file
17
CMakeLists.txt
Normal 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})
|
Loading…
Add table
Add a link
Reference in a new issue