Clean
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@ -48,3 +48,8 @@
|
||||
|
||||
.cache/
|
||||
build/
|
||||
build-windows/
|
||||
build-linux/
|
||||
build-ios/
|
||||
build-mac/
|
||||
build-android/
|
||||
|
||||
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
@ -8,10 +8,10 @@
|
||||
"name": "(Windows) Launch",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/bin/Debug/IAEngineRuntimeWin.exe",
|
||||
"program": "${workspaceFolder}/build/bin/Debug/IAERuntime.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "${fileDirname}",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"environment": [],
|
||||
"console": "externalTerminal",
|
||||
"preLaunchTask": "CMake: build"
|
||||
|
||||
@ -30,11 +30,12 @@
|
||||
#include <glm/vec3.hpp>
|
||||
#include <glm/vec4.hpp>
|
||||
|
||||
#define IAE_LOG_TAG "[IAE]: "
|
||||
#define IAE_LOG_TAG "IAE"
|
||||
|
||||
#define IAE_LOG_INFO(...) ia::Logger::Info(IAE_LOG_TAG, __VA_ARGS__)
|
||||
#define IAE_LOG_WARN(...) ia::Logger::Warn(IAE_LOG_TAG, __VA_ARGS__)
|
||||
#define IAE_LOG_ERROR(...) ia::Logger::Error(IAE_LOG_TAG, __VA_ARGS__)
|
||||
#define IAE_LOG_SUCCESS(...) ia::Logger::Success(IAE_LOG_TAG, __VA_ARGS__)
|
||||
|
||||
namespace ia::iae
|
||||
{
|
||||
|
||||
@ -0,0 +1,7 @@
|
||||
set(SRC_FILES
|
||||
"Src/Imp/CPP/Main.cpp"
|
||||
)
|
||||
|
||||
add_library(IAERuntime SHARED ${SRC_FILES})
|
||||
|
||||
target_link_libraries(IAERuntime PRIVATE IAEngine nlohmann_json SDL3::SDL3)
|
||||
|
||||
0
Runtime/Android/Src/Imp/CPP/Main.cpp
Normal file
0
Runtime/Android/Src/Imp/CPP/Main.cpp
Normal file
@ -2,6 +2,6 @@ set(SRC_FILES
|
||||
"Src/Imp/CPP/Main.cpp"
|
||||
)
|
||||
|
||||
add_executable(IAEngineRuntimeWin ${SRC_FILES})
|
||||
add_executable(IAERuntime ${SRC_FILES})
|
||||
|
||||
target_link_libraries(IAEngineRuntimeWin PRIVATE IAEngine nlohmann_json SDL3::SDL3)
|
||||
target_link_libraries(IAERuntime PRIVATE IAEngine nlohmann_json SDL3::SDL3)
|
||||
|
||||
1
Tools/BuildAndroid.bat
Normal file
1
Tools/BuildAndroid.bat
Normal file
@ -0,0 +1 @@
|
||||
cmake -S . -B ./build-android -DCMAKE_TOOLCHAIN_FILE="$NDK_PATH\build\cmake\android.toolchain.cmake" -DANDROID_ABI=x86_64
|
||||
22
Vendor/CMakeLists.txt
vendored
22
Vendor/CMakeLists.txt
vendored
@ -81,15 +81,15 @@ add_subdirectory(json/)
|
||||
# -----------------------------------------------
|
||||
# NativeFileDialog
|
||||
# -----------------------------------------------
|
||||
add_library(
|
||||
NFD STATIC
|
||||
|
||||
"nativefiledialog/src/nfd_common.c"
|
||||
"nativefiledialog/src/nfd_win.cpp"
|
||||
)
|
||||
target_include_directories(
|
||||
NFD PUBLIC
|
||||
|
||||
"nativefiledialog/src/include"
|
||||
)
|
||||
#add_library(
|
||||
# NFD STATIC
|
||||
#
|
||||
# "nativefiledialog/src/nfd_common.c"
|
||||
# "nativefiledialog/src/nfd_win.cpp"
|
||||
#)
|
||||
#target_include_directories(
|
||||
# NFD PUBLIC
|
||||
#
|
||||
# "nativefiledialog/src/include"
|
||||
#)
|
||||
|
||||
|
||||
2
Vendor/IACore
vendored
2
Vendor/IACore
vendored
Submodule Vendor/IACore updated: 66299a7caf...a73cc7e69c
Reference in New Issue
Block a user