Fixed compilation win32

This commit is contained in:
2023-03-22 19:29:20 -07:00
parent 7b9c6576af
commit 97b228e0a7
7 changed files with 23 additions and 12 deletions

View File

@ -3,4 +3,5 @@
# This software is released under the MIT License. # This software is released under the MIT License.
# https://opensource.org/licenses/MIT # https://opensource.org/licenses/MIT
set(DAWN_BUILDING dawntools CACHE INTERNAL ${DAWN_CACHE_TARGET}) # set(DAWN_BUILDING dawntools CACHE INTERNAL ${DAWN_CACHE_TARGET})
set(DAWN_BUILD_TOOLS true CACHE INTERNAL ${DAWN_CACHE_TARGET})

View File

@ -12,8 +12,13 @@ set(
# Include shared libs # Include shared libs
add_subdirectory(dawnshared) add_subdirectory(dawnshared)
# Include tools
add_subdirectory(dawntools)
# Change what we are building. Pulled from the cmake/targets dir. # Change what we are building. Pulled from the cmake/targets dir.
add_subdirectory(${DAWN_BUILDING}) if(DEFINED DAWN_BUILDING)
add_subdirectory(${DAWN_BUILDING})
endif()
# Validate game project includes the target name # Validate game project includes the target name
if(DEFINED DAWN_TARGET_NAME) if(DEFINED DAWN_TARGET_NAME)

View File

@ -19,7 +19,7 @@ bool_t CapsuleCollider::performRaycast(
return raytestCapsule( return raytestCapsule(
ray, ray,
(struct PhysicsCapsule){ {
.height = this->height, .height = this->height,
.radius = this->radius, .radius = this->radius,
.origin = this->transform->getWorldPosition() .origin = this->transform->getWorldPosition()

View File

@ -19,7 +19,7 @@ bool_t CubeCollider::performRaycast(
return Dawn::raytestCube( return Dawn::raytestCube(
ray, ray,
(struct AABB3D){ .min = this->min, .max = this->max }, { .min = this->min, .max = this->max },
this->transform->getWorldTransform(), this->transform->getWorldTransform(),
&result->point, &result->point,
&result->normal, &result->normal,

View File

@ -15,4 +15,6 @@ target_include_directories(${DAWN_TARGET_NAME}
# Subdirs # Subdirs
add_subdirectory(game) add_subdirectory(game)
add_subdirectory(save) add_subdirectory(save)
add_subdirectory(scene) add_subdirectory(scene)
tool_prefab("example-prefab.xml")

View File

@ -37,11 +37,16 @@ target_link_libraries(prefabtool
) )
# Tool Function # Tool Function
function(tool_prefab target in) function(tool_prefab in)
add_custom_target(${target} set(DEPS "")
if(DAWN_BUILD_TOOLS)
set(DEPS prefabtool)
endif()
add_custom_target(prefab_${in}
COMMAND prefabtool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}" COMMAND prefabtool --input="${DAWN_ASSETS_SOURCE_DIR}/${in}"
COMMENT "Generating prefab ${target} from ${in}" COMMENT "Generating prefab from ${in}"
DEPENDS prefabtool DEPENDS ${DEPS}
) )
add_dependencies(${DAWN_TARGET_NAME} ${target}) add_dependencies(${DAWN_TARGET_NAME} prefab_${in})
endfunction() endfunction()

View File

@ -22,7 +22,5 @@ int32_t PrefabTool::start() {
return 1; return 1;
} }
std::cout << "Input: " << input.filename << std::endl;
return 0; return 0;
} }