Samuel Marks

Results 339 comments of Samuel Marks

Thanks, that worked, now back to my incomplete type errors (see https://github.com/SoftwareNetwork/sw/issues/65)

Interesting. I suppose Travis CI could be used? - I can port your GitHub Actions for you on the weekend if you like? EDIT: Great to see GitHub Actions does...

### `CMakeLists.txt` ```cmake cmake_minimum_required(VERSION 3.2) project(pp VERSION 0.0.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 14) file(DOWNLOAD https://raw.githubusercontent.com/ocornut/imgui/6a161b8/examples/example_allegro5/main.cpp src/main.cpp EXPECTED_HASH SHA256=1138d4b862d4349beeaea984005b958c185c44ef4edba6a96db7d8c6bde33cb4) set(src ${CMAKE_CURRENT_BINARY_DIR}/src/main.cpp) find_package(SW REQUIRED) sw_add_package(org.sw.demo.ocornut.imgui) sw_execute() add_executable(${PROJECT_NAME} ${src}) target_link_libraries(${PROJECT_NAME} PRIVATE org.sw.demo.ocornut.imgui) ``` ###...

Okay so I need to explicitly? - Now getting a different error: ### `CMakeLists.txt` ```cmake cmake_minimum_required(VERSION 3.2) project(pp VERSION 0.0.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 14) file(DOWNLOAD https://raw.githubusercontent.com/ocornut/imgui/6a161b8/examples/example_allegro5/main.cpp src/main.cpp EXPECTED_HASH SHA256=1138d4b862d4349beeaea984005b958c185c44ef4edba6a96db7d8c6bde33cb4) set(src...

### `CMakeLists.txt` ```cmake cmake_minimum_required(VERSION 3.2) project(pp VERSION 0.0.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 14) file(DOWNLOAD https://raw.githubusercontent.com/ocornut/imgui/6a161b8/examples/example_allegro5/main.cpp src/main.cpp EXPECTED_HASH SHA256=1138d4b862d4349beeaea984005b958c185c44ef4edba6a96db7d8c6bde33cb4) file(DOWNLOAD https://raw.githubusercontent.com/ocornut/imgui/6a161b8/imgui_impl_allegro5.cpp src/imgui_impl_allegro5.cpp EXPECTED_HASH SHA256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855) # Hmm, same hash? file(DOWNLOAD https://raw.githubusercontent.com/ocornut/imgui/6a161b8/imgui_impl_allegro5.h src/imgui_impl_allegro5.h EXPECTED_HASH...

I have this, but I'm not sure this was the right way or if these headers are meant to be packaged: ```cmake file(DOWNLOAD https://raw.githubusercontent.com/ocornut/imgui/6a161b8/imgui_impl_allegro5.cpp src/imgui_impl_allegro5.cpp EXPECTED_HASH SHA256=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855) # Hmm, same...

Thanks but I depend on a bunch of other C/C++ libraries and need consistent tooling throughout. Will await your CMake fix :)

Sort-of offtopic: I'm working on a few C++ projects at the moment, some commercial, some open-source, others both. If you want some contract work hit me up and I'll see...

@KangLin If you want, add me to your repo and I'll start committing to your `windows` branch. Otherwise happy to wait for this to be merged before proffering.

@KangLin I'm away at a conference, I'll have access to my Windows computer in a week if that works? Great to see BTW