diff options
author | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
commit | f1fe73d1909a2448a004a88362a1a532d0d4f7c3 (patch) | |
tree | ab37ae3837e2f858de2932bcee9f26e69fab3db1 /libs/assimp/samples/SimpleTexturedDirectx11/CMakeLists.txt | |
parent | f567ea1e2798fd3156a416e61f083ea3e6b95719 (diff) |
switch to tinyobj and nanovg from assimp and cairo
Diffstat (limited to 'libs/assimp/samples/SimpleTexturedDirectx11/CMakeLists.txt')
-rw-r--r-- | libs/assimp/samples/SimpleTexturedDirectx11/CMakeLists.txt | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/libs/assimp/samples/SimpleTexturedDirectx11/CMakeLists.txt b/libs/assimp/samples/SimpleTexturedDirectx11/CMakeLists.txt deleted file mode 100644 index 007ada3..0000000 --- a/libs/assimp/samples/SimpleTexturedDirectx11/CMakeLists.txt +++ /dev/null @@ -1,51 +0,0 @@ -FIND_PACKAGE(DirectX) - -IF ( MSVC ) - SET(M_LIB) -ENDIF () - -if ( MSVC ) - ADD_DEFINITIONS( -D_SCL_SECURE_NO_WARNINGS ) - ADD_DEFINITIONS( -D_CRT_SECURE_NO_WARNINGS ) - REMOVE_DEFINITIONS( -DUNICODE -D_UNICODE ) -endif () - -ADD_COMPILE_DEFINITIONS(SHADER_PATH="${CMAKE_CURRENT_SOURCE_DIR}/SimpleTexturedDirectx11/") - -INCLUDE_DIRECTORIES( - ${Assimp_SOURCE_DIR}/include - ${Assimp_SOURCE_DIR}/code - ${SAMPLES_SHARED_CODE_DIR} -) - -LINK_DIRECTORIES( - ${Assimp_BINARY_DIR} - ${Assimp_BINARY_DIR}/lib -) - -ADD_EXECUTABLE( assimp_simpletextureddirectx11 WIN32 - SimpleTexturedDirectx11/Mesh.h - SimpleTexturedDirectx11/ModelLoader.cpp - SimpleTexturedDirectx11/ModelLoader.h - #SimpleTexturedDirectx11/PixelShader.hlsl - SimpleTexturedDirectx11/TextureLoader.cpp - SimpleTexturedDirectx11/TextureLoader.h - #SimpleTexturedDirectx11/VertexShader.hlsl - SimpleTexturedDirectx11/main.cpp - SimpleTexturedDirectx11/SafeRelease.hpp - ${SAMPLES_SHARED_CODE_DIR}/UTFConverter.cpp - ${SAMPLES_SHARED_CODE_DIR}/UTFConverter.h -) - -TARGET_USE_COMMON_OUTPUT_DIRECTORY(assimp_simpletextureddirectx11) - -SET_PROPERTY(TARGET assimp_simpletextureddirectx11 PROPERTY DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX}) - -TARGET_LINK_LIBRARIES( assimp_simpletextureddirectx11 assimp comctl32.lib winmm.lib ) -SET_TARGET_PROPERTIES( assimp_simpletextureddirectx11 PROPERTIES - OUTPUT_NAME assimp_simpletextureddirectx11 -) - -INSTALL( TARGETS assimp_simpletextureddirectx11 - DESTINATION "${ASSIMP_BIN_INSTALL_DIR}" COMPONENT assimp-dev -) |