Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmheg committed Apr 15, 2022
0 parents commit 0c3d91d
Show file tree
Hide file tree
Showing 26 changed files with 3,264 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

.idea/
cmake-*/
build/
__pycache__/
release/
38 changes: 38 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
cmake_minimum_required(VERSION 3.10)
project(animassist)

message(STATUS "havok sdk root local=${HAVOK_SDK_ROOT}")
message(STATUS "havok sdk root env=$ENV{HAVOK_SDK_ROOT}")

set(
PROJ_LIBRARIES
hkCompat.lib
hkBase.lib
hkSerialize.lib
hkSceneData.lib
hkVisualize.lib
hkInternal.lib
hkImageUtilities.lib
hkaAnimation.lib
hkaInternal.lib
hkaPhysics2012Bridge.lib
hkcdCollide.lib
hkcdInternal.lib
hkGeometryUtilities.lib
)

include_directories(
"$ENV{HAVOK_SDK_ROOT}/Source/"
)

if (CMAKE_BUILD_TYPE STREQUAL "Debug")
link_directories("$ENV{HAVOK_SDK_ROOT}/Lib/win32_vs2012_win7_noSimd/debug/")
else()
link_directories("$ENV{HAVOK_SDK_ROOT}/Lib/win32_vs2012_win7_noSimd/release/")
endif()

add_definitions(-DUNICODE -D_UNICODE)
add_executable(animassist main.cpp)
target_link_libraries(animassist ${PROJ_LIBRARIES})

set(CMAKE_CXX_STANDARD 14)
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004

Copyright (C) 2004 Sam Hocevar <[email protected]>

Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.

DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

0. You just DO WHAT THE FUCK YOU WANT TO.
Loading

0 comments on commit 0c3d91d

Please sign in to comment.