mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8e3fd45500
* Initial
* Update artillerytables.cpp
* Pass by value, remove c17 features
* Tweak accuracy
* SQF work
- improve compat with a3 mlrs with remote cam (animationSourcePhase)
- handle non [0] turrets (rhs prp)
- add config entries
- use vectorCos to fix fp error (thanks commy)
* Support per mag air friction
* tweak friction
* Integrate with mk6
* more acos fixes
* Handle invalid memPointGunOptic (CUP_BM21_Base)
* Cleanup
* cleanup/tweaks
* Update checkConfigs.sqf
* Finish cleanup of ace_mk6mortar
* Update stringtable.xml
* fix bwc for ACE_RangeTable_82mm
* Update fnc_rangeTableCanUse.sqf
* build 32dll, fix some headers
* strncpy and move testing to seperate file
* Move to sub-category
* Update for ACE_Extensions changes and add warning to ace_common
* Update stringtable.xml
* Update addons/common/functions/fnc_checkFiles.sqf
Co-Authored-By: jonpas <jonpas33@gmail.com>
* Update stringtable.xml
* Update stringtable.xml
* test extension.yml update logical operator
* Revert "test extension.yml update logical operator"
This reverts commit b1871724ad
.
* more guess and test
25 lines
974 B
CMake
25 lines
974 B
CMake
set(ACE_EXTENSION_NAME "ace_artillerytables")
|
|
|
|
file(GLOB SOURCES *.h *.hpp *.c *.cpp)
|
|
add_library( ${ACE_EXTENSION_NAME} SHARED ${SOURCES} ${GLOBAL_SOURCES})
|
|
target_link_libraries(${ACE_EXTENSION_NAME} ace_common)
|
|
set_target_properties(${ACE_EXTENSION_NAME} PROPERTIES PREFIX "")
|
|
set_target_properties(${ACE_EXTENSION_NAME} PROPERTIES FOLDER Extensions)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
set_target_properties(${ACE_EXTENSION_NAME} PROPERTIES LINK_SEARCH_START_STATIC 1)
|
|
set_target_properties(${ACE_EXTENSION_NAME} PROPERTIES LINK_SEARCH_END_STATIC 1)
|
|
endif()
|
|
|
|
|
|
|
|
# enable_testing()
|
|
# set(ACE_TEST_NAME Test_${ACE_EXTENSION_NAME})
|
|
|
|
# add_executable(${ACE_TEST_NAME} tests/tester.cpp ${SOURCES})
|
|
# target_link_libraries(${ACE_TEST_NAME} ace_common)
|
|
# target_link_libraries(${ACE_TEST_NAME} ${ACE_EXTENSION_NAME})
|
|
# target_link_libraries(${ACE_TEST_NAME} gtest_main)
|
|
# add_test(${ACE_TEST_NAME} ${ACE_TEST_NAME})
|
|
# set_target_properties(${ACE_TEST_NAME} PROPERTIES FOLDER Tests)
|