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.
# 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
add_subdirectory(dawnshared)
# Include tools
add_subdirectory(dawntools)
# 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
if(DEFINED DAWN_TARGET_NAME)

View File

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

View File

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

View File

@ -16,3 +16,5 @@ target_include_directories(${DAWN_TARGET_NAME}
add_subdirectory(game)
add_subdirectory(save)
add_subdirectory(scene)
tool_prefab("example-prefab.xml")

View File

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

View File

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