Code fonctionnel mais résultat mauvais, je comprends pas pourquoi o_o

This commit is contained in:
Pcornat 2021-03-04 23:04:43 +01:00
commit f38226609f
No known key found for this signature in database
GPG key ID: 873C3ACCF970C74E
2 changed files with 51 additions and 5 deletions

View file

@ -50,8 +50,14 @@ set(LINKER_FLAGS
)
add_subdirectory(external/frozen EXCLUDE_FROM_ALL)
target_compile_definitions(frozen INTERFACE ${COMPILE_DEFINITIONS})
target_compile_options(frozen INTERFACE ${COMPILE_FLAGS})
target_link_options(frozen INTERFACE ${LINKER_OPTIONS})
target_link_libraries(frozen ${Boost_LIBRARIES})
add_executable(GTA_SA_cheat main.cpp)
target_compile_definitions(GTA_SA_cheat PRIVATE ${COMPILE_DEFINITIONS})
target_compile_options(GTA_SA_cheat PRIVATE ${COMPILE_FLAGS})
target_link_options(GTA_SA_cheat PRIVATE ${LINKER_OPTIONS})
target_link_libraries(GTA_SA_cheat ${Boost_LIBRARIES})
target_link_libraries(GTA_SA_cheat ${Boost_LIBRARIES} frozen)