mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 16:44:13 +08:00
14 lines
460 B
CMake
14 lines
460 B
CMake
|
if(${CMAKE_SIZEOF_VOID_P} EQUAL 8)
|
|||
|
set(Detours ${CMAKE_CURRENT_LIST_DIR}/Detours-4.0.1/lib.X64/detours.lib)
|
|||
|
else()
|
|||
|
set(Detours ${CMAKE_CURRENT_LIST_DIR}/Detours-4.0.1/lib.X86/detours.lib)
|
|||
|
endif()
|
|||
|
|
|||
|
include_directories(${CMAKE_CURRENT_LIST_DIR})
|
|||
|
include_directories(${CMAKE_CURRENT_LIST_DIR}/Detours-4.0.1/include)
|
|||
|
|
|||
|
|
|||
|
if(${CMAKE_SIZEOF_VOID_P} EQUAL 4)
|
|||
|
set(LTLPlatform "Win32")
|
|||
|
endif()
|
|||
|
include("${CMAKE_CURRENT_LIST_DIR}/VC-LTL helper for cmake.cmake")
|