This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository eshell.
View the commit online.
commit d29f0a92d65e094d0a0e10d3790ac9c1f233889e
Author: swagtoy <m...@ow.swag.toys>
AuthorDate: Sat Oct 19 13:50:28 2024 -0400
CMake
---
CMakeLists.txt | 4 ++++
eshell/CMakeLists.txt | 14 ++++++++++++++
2 files changed, 18 insertions(+)
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..900c859
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,4 @@
+cmake_minimum_required(VERSION 3.15)
+
+include(eshell/CMakeLists.txt)
+
diff --git a/eshell/CMakeLists.txt b/eshell/CMakeLists.txt
new file mode 100644
index 0000000..bad0d40
--- /dev/null
+++ b/eshell/CMakeLists.txt
@@ -0,0 +1,14 @@
+project(
+ Eshell
+ VERSION 0.1
+ LANGUAGES C)
+
+find_package(PkgConfig)
+pkg_check_modules(EFL REQUIRED efl ecore)
+
+add_executable(Eshell
+ eshell/src/main.c)
+
+set_target_properties(Eshell PROPERTIES OUTPUT_NAME "eshell")
+target_include_directories(Eshell PUBLIC ${ECORE_INCLUDE_DIRS} ${EFL_INCLUDE_DIRS})
+target_link_libraries(Eshell ${EFL_LIBRARIES})
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.