Skip to content
This repository was archived by the owner on Apr 7, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
441 changes: 438 additions & 3 deletions .gitignore

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[submodule "minhook"]
path = minhook
url = https://github.com/TsudaKageyu/minhook
[submodule "json"]
path = json
url = https://github.com/nlohmann/json
[submodule "gd.h"]
path = gd.h
url = https://github.com/Galster-dev/gd.h/
[submodule "utfcpp"]
path = utfcpp
url = https://github.com/nemtrif/utfcpp
[submodule "cocos-headers"]
path = cocos-headers
url = https://github.com/HJfod/cocos-headers
18 changes: 18 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
cmake_minimum_required(VERSION 3.0.0)

project(gdl)

file(GLOB_RECURSE GDL_SOURCES src/*.[hc]pp)

set(CMAKE_CXX_STANDARD 17)

add_subdirectory(minhook)
add_subdirectory(json)
add_subdirectory(cocos-headers)
add_subdirectory(utfcpp)

include_directories(src gd.h gd.h/include)

add_library(gdl SHARED ${GDL_SOURCES})

target_link_libraries(gdl PRIVATE cocos2d nlohmann_json::nlohmann_json minhook utf8cpp)
31 changes: 0 additions & 31 deletions GDL.sln

This file was deleted.

1,631 changes: 0 additions & 1,631 deletions GDL.vcxproj

This file was deleted.

Loading