I am trying to run the simplest app with libtorrent. I use Visual Studio Compiler with CLion on Windows
#include <iostream>
#include <fstream>
#include "libtorrent/entry.hpp"
#include "libtorrent/bencode.hpp"
#include "libtorrent/session.hpp"
#include "libtorrent/torrent_info.hpp"
#include "libtorrent/create_torrent.hpp"
using namespace libtorrent;
int main() {
file_storage fs;
add_files(fs, "C:\\Users\\User\\Desktop\\temp");
return 0;
}
cmake_minimum_required(VERSION 3.17)
project(untitled)
set(CMAKE_CXX_STANDARD 14)
set(OPENSSL_ROOT_DIR "C:\\Users\\User\\vcpkg\\installed\\x86-windows")
add_executable(main main.cpp)
find_package(LibtorrentRasterbar CONFIG REQUIRED)
target_link_libraries(main PRIVATE LibtorrentRasterbar::torrent-rasterbar)
But I have the next error