-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from sucksome/master
Aris for Qt and WebAssembly
- Loading branch information
Showing
72 changed files
with
10,987 additions
and
7,628 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,7 @@ The following people contributed to GNU Aris, | |
and their time and effort are greatly appreciated: | ||
|
||
Ian Dunn <[email protected]> | ||
Kovács Zoltán <[email protected]> | ||
Saksham Attri <[email protected]> | ||
Alexander Thaller <[email protected]> | ||
Andreas Ebetshuber <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ project(aris C) | |
|
||
set(PACKAGE_NAME "GNU Aris") | ||
set(PACKAGE "aris") | ||
set(ARIS_VERSION "2.2") | ||
set(ARIS_VERSION "3.0") | ||
set(PACKAGE_BUGREPORT "[email protected]") | ||
|
||
set(CMAKE_C_STANDARD 11) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
AC_PREREQ(2.60) | ||
AC_INIT([GNU Aris], [2.2], [[email protected]]) | ||
AC_INIT([GNU Aris], [3.0], [[email protected]]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AM_INIT_AUTOMAKE | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
cmake_minimum_required(VERSION 3.16) | ||
|
||
project(aris-qt VERSION 0.1 LANGUAGES C CXX) | ||
|
||
set(CMAKE_AUTOMOC ON) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
add_compile_definitions(WITH_CMAKE) | ||
|
||
find_package(Qt6 6.2 REQUIRED COMPONENTS Quick Widgets QuickControls2) | ||
find_package(LibXml2 REQUIRED) | ||
|
||
add_executable(aris-qt | ||
../src/aio.h | ||
auxconnector.h | ||
connector.h | ||
goaldata.h | ||
goalmodel.h | ||
goals-qt.h | ||
../src/interop-isar.h | ||
../src/list.h | ||
../src/process.h | ||
../src/proof.h | ||
proofdata.h | ||
proofmodel.h | ||
../src/rules.h | ||
../src/sen-data.h | ||
../src/sexpr-process.h | ||
../src/typedef.h | ||
../src/var.h | ||
../src/vec.h | ||
../src/aio.c | ||
auxconnector.cpp | ||
connector.cpp | ||
goaldata.cpp | ||
goalmodel.cpp | ||
goals-qt.c | ||
../src/interop-isar.c | ||
../src/list.c | ||
main.cpp | ||
../src/process-main.c | ||
../src/process.c | ||
../src/proof.c | ||
proofdata.cpp | ||
proofmodel.cpp | ||
../src/sen-data.c | ||
../src/sexpr-process-bool.c | ||
../src/sexpr-process-equiv.c | ||
../src/sexpr-process-infer.c | ||
../src/sexpr-process-misc.c | ||
../src/sexpr-process-quant.c | ||
../src/sexpr-process.c | ||
../src/var.c | ||
../src/vec.c | ||
) | ||
|
||
qt_add_qml_module(aris-qt | ||
URI arisqt | ||
VERSION 1.0 | ||
QML_FILES main.qml ProofArea.qml DrawerTools.qml GoalLine.qml KeyButton.qml KeyGroup.qml | ||
RESOURCES | ||
assets/help.png | ||
assets/icon_simple.svg | ||
assets/about.png | ||
assets/font.png | ||
assets/import.png | ||
assets/boolean.png | ||
assets/goal.png | ||
assets/export.png | ||
assets/saveas.png | ||
assets/save.png | ||
assets/folder.png | ||
assets/new.png | ||
assets/eval.png | ||
) | ||
|
||
set_target_properties(aris-qt PROPERTIES | ||
MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com | ||
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} | ||
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} | ||
MACOSX_BUNDLE TRUE | ||
WIN32_EXECUTABLE TRUE | ||
) | ||
|
||
target_link_libraries(aris-qt | ||
PRIVATE Qt6::Quick | ||
PRIVATE Qt6::Widgets | ||
PRIVATE Qt6::QuickControls2 | ||
PUBLIC LibXml2::LibXml2 | ||
) | ||
|
||
install(TARGETS aris-qt | ||
BUNDLE DESTINATION . | ||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | ||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} | ||
) |
Oops, something went wrong.