forked from ilmheg/MultiAssist
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0c3d91d
Showing
26 changed files
with
3,264 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.