Fixed compilation win32
This commit is contained in:
@ -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})
|
@ -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)
|
||||
|
@ -19,7 +19,7 @@ bool_t CapsuleCollider::performRaycast(
|
||||
|
||||
return raytestCapsule(
|
||||
ray,
|
||||
(struct PhysicsCapsule){
|
||||
{
|
||||
.height = this->height,
|
||||
.radius = this->radius,
|
||||
.origin = this->transform->getWorldPosition()
|
||||
|
@ -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,
|
||||
|
@ -15,4 +15,6 @@ target_include_directories(${DAWN_TARGET_NAME}
|
||||
# Subdirs
|
||||
add_subdirectory(game)
|
||||
add_subdirectory(save)
|
||||
add_subdirectory(scene)
|
||||
add_subdirectory(scene)
|
||||
|
||||
tool_prefab("example-prefab.xml")
|
@ -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()
|
@ -22,7 +22,5 @@ int32_t PrefabTool::start() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
std::cout << "Input: " << input.filename << std::endl;
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user