Adding basic ncurses demo project.
This commit is contained in:
parent
4282cc4b12
commit
f3563ce6d1
5 changed files with 60 additions and 0 deletions
12
2024/07/ncurses_demo1/conanfile.py
Normal file
12
2024/07/ncurses_demo1/conanfile.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from conan import ConanFile
|
||||
from conan.tools.cmake import cmake_layout
|
||||
|
||||
class NcursesDemo1(ConanFile):
|
||||
settings = "os", "compiler", "build_type", "arch"
|
||||
generators = "CMakeDeps", "CMakeToolchain"
|
||||
|
||||
def requirements(self):
|
||||
self.requires("ncurses/6.5")
|
||||
|
||||
def layout(self):
|
||||
cmake_layout(self)
|
Loading…
Add table
Add a link
Reference in a new issue