diff options
author | Brad Davis <[email protected]> | 2013-12-29 01:11:46 -0800 |
---|---|---|
committer | Brad Davis <[email protected]> | 2013-12-29 01:11:46 -0800 |
commit | a91c41e4b21b61c91df3c86c105a1ab08c6d77c6 (patch) | |
tree | fe7e7f63ea491f9ad0acb22cefb616d17a054b19 /3rdParty/TinyXml/CMakeLists.txt | |
parent | cc010856c4413013e229e9344c882a92e7c3d485 (diff) |
Tweaking cmake usage
Diffstat (limited to '3rdParty/TinyXml/CMakeLists.txt')
-rw-r--r-- | 3rdParty/TinyXml/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdParty/TinyXml/CMakeLists.txt b/3rdParty/TinyXml/CMakeLists.txt index de1d7d2..68bf4df 100644 --- a/3rdParty/TinyXml/CMakeLists.txt +++ b/3rdParty/TinyXml/CMakeLists.txt @@ -1,3 +1,3 @@ -project (LibTinyXML2) - -add_library(TinyXML2 STATIC tinyxml2.cpp) +cmake_minimum_required(VERSION 2.8) +project (TinyXML2) +add_library(TinyXML2 STATIC tinyxml2.cpp tinyxml2.h) |