Revision ef18eb33
Added by David Sorber about 4 years ago
| software/fixed/CMakeLists.txt | ||
|---|---|---|
|
ADD_EXECUTABLE(parse_test ${sources} ${CMAKE_CURRENT_SOURCE_DIR}/parse_test.cc)
|
||
|
|
||
|
# Test executables
|
||
|
ADD_EXECUTABLE(fixed_test ${sources} ${CMAKE_CURRENT_SOURCE_DIR}/fixed_test.cc)
|
||
|
TARGET_LINK_LIBRARIES(fixed_test ${EXTERNAL_LIBS})
|
||
|
ADD_EXECUTABLE(fixed64_test ${sources} ${CMAKE_CURRENT_SOURCE_DIR}/fixed64_test.cc)
|
||
|
TARGET_LINK_LIBRARIES(fixed64_test ${EXTERNAL_LIBS})
|
||
|
|
||
|
ADD_EXECUTABLE(fixed128_test ${sources} ${CMAKE_CURRENT_SOURCE_DIR}/fixed128_test.cc)
|
||
|
TARGET_LINK_LIBRARIES(fixed128_test ${EXTERNAL_LIBS})
|
||
|
|
||
|
ADD_EXECUTABLE(int128_test ${sources} ${CMAKE_CURRENT_SOURCE_DIR}/int128_test.cc)
|
||
|
TARGET_LINK_LIBRARIES(int128_test ${EXTERNAL_LIBS})
|
||
Correct multiply by integer operator. Also add test cases.