mirror of
https://github.com/SysRay/psOff_public.git
synced 2024-11-23 14:29:39 +00:00
21 lines
323 B
CMake
21 lines
323 B
CMake
enable_testing()
|
|
|
|
add_compile_definitions(
|
|
BOOST_ALL_NO_LIB
|
|
)
|
|
|
|
link_libraries(gtest_main gmock gmock_main)
|
|
add_link_options(/DEBUG)
|
|
link_directories(
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}/lib
|
|
)
|
|
|
|
include_directories(
|
|
${PRJ_SRC_DIR}
|
|
|
|
${Vulkan_INCLUDE_DIRS}
|
|
${PRJ_SRC_DIR}/tools/logging
|
|
)
|
|
|
|
add_subdirectory(core) |