Code fonctionnel mais résultat mauvais, je comprends pas pourquoi o_o
This commit is contained in:
parent
76badc46a0
commit
f38226609f
2 changed files with 51 additions and 5 deletions
|
|
@ -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)
|
||||
Loading…
Reference in a new issue