This commit is contained in:
2024-09-19 13:05:21 -04:00
parent 524cc85a87
commit 40d51b3d07
4 changed files with 11 additions and 7 deletions

View File

@@ -29,10 +29,10 @@ CPMAddPackage(
URL https://git.redacted.cc/josh/JGL/archive/Prerelease-33.zip
)
CPMAddPackage(
NAME JUI
URL https://git.redacted.cc/josh/ReJUI/archive/Prerelease-2.zip
)
#CPMAddPackage(
# NAME JUI
# URL https://git.redacted.cc/josh/ReJUI/archive/Prerelease-2.zip
#)
add_subdirectory(Core)

View File

@@ -3,6 +3,6 @@ cmake_minimum_required(VERSION 3.18..3.29)
add_executable(CaveClientApp main.cpp)
target_include_directories(CaveClientApp PUBLIC ${ReWindow_SOURCE_DIR}/include)
target_include_directories(CaveClientApp PUBLIC ${ReWindow_SOURCE_DIR}/include ${J3ML_SOURCE_DIR}/include)
target_link_libraries(CaveClientApp PUBLIC ReWindowLibrary)
target_link_libraries(CaveClientApp PUBLIC ReWindowLibrary J3ML)

View File

@@ -30,7 +30,7 @@ public:
}
};
int main(int argc, char** argv)
int main()
{
auto* window = new CaveGameWindow("Re-CaveGame", 1280, 720);

View File

@@ -1,3 +1,7 @@
//
// Created by dawsh on 9/19/24.
//
int main() {
}