update todo to reflect port

This commit is contained in:
Chris Cochrun 2023-11-27 11:13:50 -06:00
parent 744481587f
commit b37bce6ad3

View file

@ -4,8 +4,8 @@
:CATEGORY: dev :CATEGORY: dev
:END: :END:
* Tasks [0%] [0/0] * Tasks [62%] [48/77]
** TODO Port to CXX-QT 6.0 [90%] [9/10] ** DONE Port to CXX-QT 6.0 [0%] [0/0]
[[file:~/dev/lumina/src/rust/lib.rs]] [[file:~/dev/lumina/src/rust/lib.rs]]
*** DONE image_model.rs *** DONE image_model.rs
@ -18,8 +18,16 @@
*** DONE obs.rs *** DONE obs.rs
*** DONE 18000 errors..... *** DONE 18000 errors.....
round 1 of errors done..... round 1 of errors done.....
*** TODO 237 errors... *** DONE 237 errors...
now round 2 now round 2
*** DONE FIX CMAKE? or build.rs
This was a doozy. Apparently the way that cmake links things together changed in cxx_qt 6.0. So, I had to rename a lot of the library linking to ${APP_NAME}_lib instead of using the ${CRATE} name. So, basically it changed from liblumina to lumina_lib I believe.
Like this..
#+begin_src CMake
target_link_libraries(${APP_NAME} PRIVATE ${APP_NAME}_lib)
#+end_src
** TODO Write a function to handle switching to the next fragment in revealjs ** TODO Write a function to handle switching to the next fragment in revealjs
[[file:~/dev/lumina/src/qml/presenter/Slide.qml::WebEngineView {]] [[file:~/dev/lumina/src/qml/presenter/Slide.qml::WebEngineView {]]