mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
🎉 Added serialize WebSocketpp pkg
This commit is contained in:
parent
f652081257
commit
ffc6b41573
1 changed files with 25 additions and 0 deletions
25
conan-pkgs/WebSocketpp/conanfile.py
Normal file
25
conan-pkgs/WebSocketpp/conanfile.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
from conans import ConanFile, CMake, tools
|
||||
|
||||
|
||||
class LibCommuniConan(ConanFile):
|
||||
name = "WebSocketpp"
|
||||
version = "0.8.1"
|
||||
license = "MIT"
|
||||
author = "Edgar Edgar@AnotherFoxGuy.com"
|
||||
url = "https://github.com/Chatterino/chatterino2"
|
||||
description = "WebSocket++ is a header only C++ library that implements RFC6455 The WebSocket Protocol"
|
||||
settings = "os", "compiler", "build_type", "arch"
|
||||
generators = "cmake"
|
||||
|
||||
def source(self):
|
||||
git = tools.Git()
|
||||
git.clone("https://github.com/ziocleto/websocketpp.git")
|
||||
git.checkout("1e0138c7ccedc6be859d28270ccd6195f235a94e")
|
||||
|
||||
def build(self):
|
||||
cmake = CMake(self)
|
||||
cmake.configure()
|
||||
|
||||
def package(self):
|
||||
cmake = CMake(self)
|
||||
cmake.install()
|
Loading…
Reference in a new issue