Last active
August 29, 2015 14:21
-
-
Save takamin/56f366e98c0ab568ebd6 to your computer and use it in GitHub Desktop.
ジェネレータの名前に `MinGW` が含まれていたら bar をリンクする CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 2.8) | |
project(hogehoge) | |
add_executable(hoge hoge.c) | |
if(CMAKE_GENERATOR MATCHES "MinGW") | |
target_link_libraries(hoge foo bar) | |
else() | |
target_link_libraries(hoge foo) | |
endif() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment