diff options
author | gregory guy <[email protected]> | 2020-10-02 12:42:44 +0200 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-10-05 21:43:02 +0900 |
commit | c64cc0c3b3778eb17dde2670976d3e5314689143 (patch) | |
tree | 106109eada8037ecf6ca9dd8c1aac403bb0ac633 /ConfigureChecks.cmake | |
parent | 000a818a2cc613690ee5ed4d47685722fff39e83 (diff) | |
download | libart-lgpl-c64cc0c3b3778eb17dde2670976d3e5314689143.tar.gz libart-lgpl-c64cc0c3b3778eb17dde2670976d3e5314689143.zip |
Libart-lgpl moved into a 'src' folder for consistency sake with the other
modules.
Add basic cmake build instructions.
Rework of the README file.
Some cosmetics.
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit 8349a964c20f96504886ece0f2c8ba0c7489fff3)
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 11daccd..c536d41 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -50,3 +50,8 @@ else( ) tde_message_fatal( "sizeof(int) != 4 and sizeof(long) != 4" ) endif( ) endif( ) + + +##### check for the math libc + +find_library( MATH_LIBC m ) |